Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update node.js to v18.20.6 #32

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 8, 2022

This PR contains the following updates:

Package Type Update Change
node stage minor 18.2.0-alpine -> 18.20.6-alpine
node final minor 18.2.0-alpine -> 18.20.6-alpine

Release Notes

nodejs/node (node)

v18.20.6: 2025-01-21, Version 18.20.6 'Hydrogen' (LTS), @​RafaelGSS

Compare Source

This is a security release.

Notable Changes
  • CVE-2025-23085 - src: fix HTTP2 mem leak on premature close and ERR_PROTO (Medium)
  • CVE-2025-23084 - path: fix path traversal in normalize() on Windows (Medium)

Dependency update:

  • CVE-2025-22150 - Use of Insufficiently Random Values in undici fetch() (Medium)
Commits

v18.20.5: 2024-11-12, Version 18.20.5 'Hydrogen' (LTS), @​aduh95

Compare Source

Notable Changes
  • [ac37e554a5] - esm: mark import attributes and JSON module as stable (Nicolò Ribaudo) #​55333
Commits

v18.20.4: 2024-07-08, Version 18.20.4 'Hydrogen' (LTS), @​RafaelGSS

Compare Source

This is a security release.

Notable Changes
Commits

v18.20.3: 2024-05-21, Version 18.20.3 'Hydrogen' (LTS), @​richardlau

Compare Source

Notable Changes

This release fixes a regression introduced in Node.js 18.19.0 where http.server.close() was incorrectly closing idle connections.

A fix has also been included for compiling Node.js from source with newer versions of Clang.

The list of keys used to sign releases has been synchronized with the current list from the main branch.

Updated dependencies
  • acorn updated to 8.11.3.
  • acorn-walk updated to 8.3.2.
  • ada updated to 2.7.8.
  • c-ares updated to 1.28.1.
  • corepack updated to 0.28.0.
  • nghttp2 updated to 1.61.0.
  • ngtcp2 updated to 1.3.0.
  • npm updated to 10.7.0. Includes a fix from [email protected] to limit the number of open connections npm/cli#7324.
  • simdutf updated to 5.2.4.
  • zlib updated to 1.3.0.1-motley-7d77fb7.
Commits

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

Compare Source

This is a security release.

Notable Changes
  • CVE-2024-27980 - Command injection via args parameter of child_process.spawn without shell option enabled on Windows
Commits

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

Compare Source

This is a security release.

Notable Changes
  • CVE-2024-27983 - Assertion failed in node::http2::Http2Session::~Http2Session() leads to HTTP/2 server crash- (High)
  • CVE-2024-27982 - HTTP Request Smuggling via Content Length Obfuscation - (Medium)
  • llhttp version 9.2.1
  • undici version 5.28.4
Commits

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

Compare Source

Notable Changes
Added support for import attributes

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

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

For example,

import "foo" assert { ... }

should be replaced with

import "foo" with { ... }

For more details, see

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

Doc deprecation for dirent.path

Please use newly added dirent.parentPath instead.

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

Experimental node-api feature flags

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

This feature can be turned off by defining
NODE_API_EXPERIMENTAL_NOGC_ENV_OPT_OUT.

Contributed by Gabriel Schulhof in #​50060.

Root certificates updated to NSS 3.98

Certificates added:

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

Certificates removed:

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

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

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

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

Commits

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

Compare Source

Notable changes

This is a security release.

Notable changes
  • CVE-2024-21892 - Code injection and privilege escalation through Linux capabilities- (High)
  • CVE-2024-22019 - http: Reading unprocessed HTTP request with unbounded chunk extension allows DoS attacks- (High)
  • CVE-2023-46809 - Node.js is vulnerable to the Marvin Attack (timing variant of the Bleichenbacher attack against PKCS#1 v1.5 padding) - (Medium)
  • CVE-2024-22025 - Denial of Service by resource exhaustion in fetch() brotli decoding - (Medium)
  • undici version 5.28.3
  • npm version 10.2.4
Commits

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

Compare Source

Notable Changes
npm updated to v10

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

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

ESM and customization hook changes
Leverage loaders when resolving subsequent loaders

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

Contributed by Maël Nison in #​43772.

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

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

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

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

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

Contributed by João Lenon and Jacob Smith in #​46826, Izaak Sc


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.

🔕 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 label Jun 8, 2022
@renovate renovate bot force-pushed the renovate/node-18.x branch from 8d27167 to 9907531 Compare June 16, 2022 23:39
@renovate renovate bot changed the title chore(deps): update node.js to v18.3.0 chore(deps): update node.js to v18.4.0 Jun 16, 2022
@renovate renovate bot changed the title chore(deps): update node.js to v18.4.0 chore(deps): update Node.js to v18.4.0 Jun 27, 2022
@renovate renovate bot changed the title chore(deps): update Node.js to v18.4.0 chore(deps): update node.js to v18.4.0 Jun 28, 2022
@renovate renovate bot force-pushed the renovate/node-18.x branch from 9907531 to b6fcc32 Compare July 8, 2022 20:27
@renovate renovate bot changed the title chore(deps): update node.js to v18.4.0 chore(deps): update node.js to v18.5.0 Jul 8, 2022
@renovate renovate bot force-pushed the renovate/node-18.x branch from b6fcc32 to f57e3a4 Compare July 14, 2022 23:05
@renovate renovate bot changed the title chore(deps): update node.js to v18.5.0 chore(deps): update node.js to v18.6.0 Jul 14, 2022
@renovate renovate bot changed the title chore(deps): update node.js to v18.6.0 chore(deps): update node.js to v18.6.0 - autoclosed Jul 16, 2022
@renovate renovate bot closed this Jul 16, 2022
@renovate renovate bot deleted the renovate/node-18.x branch July 16, 2022 19:53
@renovate renovate bot changed the title chore(deps): update node.js to v18.6.0 - autoclosed chore(deps): update node.js to v18.6.0 Jul 16, 2022
@renovate renovate bot restored the renovate/node-18.x branch July 16, 2022 21:27
@renovate renovate bot reopened this Jul 16, 2022
@renovate renovate bot force-pushed the renovate/node-18.x branch from f57e3a4 to 4da1452 Compare July 27, 2022 19:15
@renovate renovate bot changed the title chore(deps): update node.js to v18.6.0 chore(deps): update node.js to v18.7.0 Jul 27, 2022
@renovate renovate bot force-pushed the renovate/node-18.x branch from 4da1452 to 2ef2d9c Compare September 18, 2022 15:33
@renovate renovate bot changed the title chore(deps): update node.js to v18.7.0 chore(deps): update node.js to v18.9.0 Sep 18, 2022
@renovate renovate bot force-pushed the renovate/node-18.x branch from 2ef2d9c to 71bac0f Compare November 20, 2022 11:47
@renovate renovate bot changed the title chore(deps): update node.js to v18.9.0 chore(deps): update node.js to v18.12.1 Nov 20, 2022
@renovate renovate bot force-pushed the renovate/node-18.x branch from 71bac0f to ab32d5a Compare March 17, 2023 01:55
@renovate renovate bot changed the title chore(deps): update node.js to v18.12.1 chore(deps): update node.js to v18.15.0 Mar 17, 2023
@renovate renovate bot force-pushed the renovate/node-18.x branch 7 times, most recently from 1de67af to 3c67791 Compare March 26, 2023 18:01
@renovate renovate bot force-pushed the renovate/node-18.x branch 2 times, most recently from 30bf7bc to f94aa3c Compare October 2, 2023 21:30
@renovate renovate bot force-pushed the renovate/node-18.x branch 2 times, most recently from bb492e2 to 61958fe Compare October 12, 2023 01:16
@renovate renovate bot changed the title chore(deps): update node.js to v18.18.0 chore(deps): update node.js to v18.18.1 Oct 12, 2023
@renovate renovate bot force-pushed the renovate/node-18.x branch 2 times, most recently from b2aa000 to 6fcbe6a Compare October 16, 2023 18:19
@renovate renovate bot changed the title chore(deps): update node.js to v18.18.1 chore(deps): update node.js to v18.18.2 Oct 16, 2023
@renovate renovate bot force-pushed the renovate/node-18.x branch from 6fcbe6a to 62e6ee6 Compare October 18, 2023 12:28
@renovate renovate bot force-pushed the renovate/node-18.x branch from 62e6ee6 to 206ec6d Compare December 2, 2023 03:38
@renovate renovate bot changed the title chore(deps): update node.js to v18.18.2 chore(deps): update node.js to v18.19.0 Dec 2, 2023
@renovate renovate bot force-pushed the renovate/node-18.x branch from 206ec6d to e76daae Compare February 16, 2024 00:44
@renovate renovate bot changed the title chore(deps): update node.js to v18.19.0 chore(deps): update node.js to v18.19.1 Feb 16, 2024
@renovate renovate bot force-pushed the renovate/node-18.x branch from e76daae to 3d6a16c Compare March 27, 2024 15:50
@renovate renovate bot changed the title chore(deps): update node.js to v18.19.1 chore(deps): update node.js to v18.20.0 Mar 27, 2024
@renovate renovate bot force-pushed the renovate/node-18.x branch from 3d6a16c to 01db077 Compare April 4, 2024 17:14
@renovate renovate bot changed the title chore(deps): update node.js to v18.20.0 chore(deps): update node.js to v18.20.1 Apr 4, 2024
@renovate renovate bot force-pushed the renovate/node-18.x branch from 01db077 to 95180aa Compare April 11, 2024 16:07
@renovate renovate bot changed the title chore(deps): update node.js to v18.20.1 chore(deps): update node.js to v18.20.2 Apr 11, 2024
@renovate renovate bot force-pushed the renovate/node-18.x branch from 95180aa to 69aa4a2 Compare May 21, 2024 23:27
@renovate renovate bot changed the title chore(deps): update node.js to v18.20.2 chore(deps): update node.js to v18.20.3 May 21, 2024
@renovate renovate bot force-pushed the renovate/node-18.x branch from 69aa4a2 to a5f75a1 Compare July 9, 2024 18:06
@renovate renovate bot changed the title chore(deps): update node.js to v18.20.3 chore(deps): update node.js to v18.20.4 Jul 9, 2024
@renovate renovate bot changed the title chore(deps): update node.js to v18.20.4 chore(deps): update node docker tag to v18.20.4 Aug 6, 2024
@renovate renovate bot changed the title chore(deps): update node docker tag to v18.20.4 chore(deps): update node.js to v18.20.4 Aug 28, 2024
@renovate renovate bot force-pushed the renovate/node-18.x branch from a5f75a1 to 38ea4d8 Compare November 18, 2024 19:38
@renovate renovate bot changed the title chore(deps): update node.js to v18.20.4 chore(deps): update node.js to v18.20.5 Nov 18, 2024
@renovate renovate bot force-pushed the renovate/node-18.x branch from 38ea4d8 to a5f09ab Compare January 22, 2025 17:30
@renovate renovate bot changed the title chore(deps): update node.js to v18.20.5 chore(deps): update node.js to v18.20.6 Jan 22, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants