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

Update Node.js to v18.20.8 #172

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

Update Node.js to v18.20.8 #172

wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 18, 2023

This PR contains the following updates:

Package Type Update Change Age Adoption Passing Confidence
node (source) minor 18.18.2 -> 18.20.8 age adoption passing confidence
@types/node (source) devDependencies minor ^18.18.5 -> ^18.19.86 age adoption passing confidence

Release Notes

nodejs/node (node)

v18.20.8: 2025-03-27, Version 18.20.8 'Hydrogen' (LTS), @​richardlau

Compare Source

Notable Changes

This release updates OpenSSL to 3.0.16 and root certificates to NSS 3.108.

Commits

v18.20.7: 2025-02-20, Version 18.20.7 'Hydrogen' (LTS), @​aduh95

Compare Source

Notable Changes
Commits

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

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 changed the title Update dependency @types/node to ^18.18.6 Update dependency @types/node to ^18.18.7 Oct 25, 2023
@renovate renovate bot force-pushed the renovate/node-18.x branch from 029e519 to 88b2696 Compare October 25, 2023 19:50
@renovate renovate bot changed the title Update dependency @types/node to ^18.18.7 Update dependency @types/node to ^18.18.8 Oct 31, 2023
@renovate renovate bot force-pushed the renovate/node-18.x branch from 88b2696 to 3dda293 Compare October 31, 2023 09:38
@renovate renovate bot changed the title Update dependency @types/node to ^18.18.8 Update dependency @types/node to ^18.18.9 Nov 7, 2023
@renovate renovate bot force-pushed the renovate/node-18.x branch from 3dda293 to 344e4d0 Compare November 7, 2023 22:26
@renovate renovate bot changed the title Update dependency @types/node to ^18.18.9 Update dependency @types/node to ^18.18.10 Nov 18, 2023
@renovate renovate bot force-pushed the renovate/node-18.x branch from 344e4d0 to f027a65 Compare November 18, 2023 22:12
@renovate renovate bot changed the title Update dependency @types/node to ^18.18.10 Update dependency @types/node to ^18.18.11 Nov 21, 2023
@renovate renovate bot force-pushed the renovate/node-18.x branch from f027a65 to 65bc5cf Compare November 21, 2023 04:47
@renovate renovate bot changed the title Update dependency @types/node to ^18.18.11 Update dependency @types/node to ^18.18.12 Nov 22, 2023
@renovate renovate bot force-pushed the renovate/node-18.x branch from 65bc5cf to 24916eb Compare November 22, 2023 03:42
@renovate renovate bot changed the title Update dependency @types/node to ^18.18.12 Update dependency @types/node to ^18.18.13 Nov 23, 2023
@renovate renovate bot force-pushed the renovate/node-18.x branch from 24916eb to b4886f1 Compare November 23, 2023 22:18
@renovate renovate bot changed the title Update dependency @types/node to ^18.18.13 Update dependency node to v18.19.0 Nov 29, 2023
@renovate renovate bot force-pushed the renovate/node-18.x branch 5 times, most recently from c72e754 to 07e743f Compare December 3, 2023 20:59
@renovate renovate bot force-pushed the renovate/node-18.x branch from 07e743f to 25aa842 Compare December 7, 2023 07:35
@renovate renovate bot force-pushed the renovate/node-18.x branch from 25aa842 to 8b3f54a Compare December 30, 2023 00:36
@renovate renovate bot force-pushed the renovate/node-18.x branch 2 times, most recently from 07f428a to ff57232 Compare January 9, 2024 16:07
@renovate renovate bot force-pushed the renovate/node-18.x branch 2 times, most recently from fc6aec3 to f5692bf Compare January 17, 2024 06:58
@renovate renovate bot force-pushed the renovate/node-18.x branch 3 times, most recently from 2af4fac to 20ef955 Compare January 31, 2024 00:49
@renovate renovate bot force-pushed the renovate/node-18.x branch from 20ef955 to 5213ff3 Compare January 31, 2024 21:54
@renovate renovate bot force-pushed the renovate/node-18.x branch from 2494e35 to 2350d8c Compare November 3, 2024 09:28
@renovate renovate bot force-pushed the renovate/node-18.x branch from 2350d8c to 344b562 Compare November 12, 2024 22:47
@renovate renovate bot changed the title Update dependency node to v18.20.4 Update dependency node to v18.20.5 Nov 12, 2024
@renovate renovate bot changed the title Update dependency node to v18.20.5 Update Node.js to v18.20.5 Nov 13, 2024
@renovate renovate bot force-pushed the renovate/node-18.x branch 3 times, most recently from f890e22 to 0df2c39 Compare November 28, 2024 07:07
@renovate renovate bot force-pushed the renovate/node-18.x branch from 0df2c39 to 067e8a2 Compare December 11, 2024 10:44
@renovate renovate bot force-pushed the renovate/node-18.x branch 2 times, most recently from b65587a to 928f8b2 Compare January 6, 2025 11:07
@renovate renovate bot force-pushed the renovate/node-18.x branch 2 times, most recently from bb346c0 to dd6c494 Compare January 21, 2025 18:08
@renovate renovate bot changed the title Update Node.js to v18.20.5 Update Node.js to v18.20.6 Jan 21, 2025
@renovate renovate bot force-pushed the renovate/node-18.x branch 3 times, most recently from a64f542 to f8b9316 Compare January 23, 2025 08:35
@renovate renovate bot force-pushed the renovate/node-18.x branch from f8b9316 to 2a8ec53 Compare February 4, 2025 01:28
@renovate renovate bot force-pushed the renovate/node-18.x branch from 2a8ec53 to 0439701 Compare February 14, 2025 02:51
@renovate renovate bot changed the title Update Node.js to v18.20.6 Update dependency @types/node to ^18.19.76 Feb 19, 2025
@renovate renovate bot force-pushed the renovate/node-18.x branch from 0439701 to 203bd33 Compare February 28, 2025 23:06
@renovate renovate bot changed the title Update dependency @types/node to ^18.19.76 Update dependency @types/node to ^18.19.78 Feb 28, 2025
@renovate renovate bot force-pushed the renovate/node-18.x branch from 203bd33 to e6b10de Compare March 3, 2025 15:20
@renovate renovate bot changed the title Update dependency @types/node to ^18.19.78 Update Node.js to v18.20.7 Mar 3, 2025
@renovate renovate bot force-pushed the renovate/node-18.x branch 2 times, most recently from 747dd23 to 7560c1c Compare March 9, 2025 10:56
@renovate renovate bot force-pushed the renovate/node-18.x branch 2 times, most recently from 4889d40 to 5c259a4 Compare March 28, 2025 04:01
@renovate renovate bot changed the title Update Node.js to v18.20.7 Update Node.js to v18.20.8 Mar 28, 2025
@renovate renovate bot force-pushed the renovate/node-18.x branch from 5c259a4 to 1459f85 Compare April 1, 2025 20:11
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants