Skip to content

Update Node.js to v24.18.0 - #1547

Open
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/node-24.x
Open

Update Node.js to v24.18.0#1547
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/node-24.x

Conversation

@renovate

@renovate renovate Bot commented Jul 15, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Type Update Change Pending
node (source) engines minor 24.16.024.18.0 v24.19.0 (+1)
node uses-with minor 24.16.024.18.0 24.19.0 (+1)
node (source) final minor 24.16.024.18.0 24.19.0 (+1)
node (source) stage minor 24.16.024.18.0 24.19.0 (+1)

Release Notes

nodejs/node (node)

v24.18.0: 2026-06-23, Version 24.18.0 'Krypton' (LTS), @​richardlau prepared by @​sxa

Compare Source

Notable Changes
  • [e07e7a31e1] - crypto: update root certificates to NSS 3.123.1 (Node.js GitHub Bot) #​63527
  • [44c8ebcbd6] - http: avoid stream listeners on idle agent sockets (Matteo Collina) #​64004
  • [d3ef4122ee] - (SEMVER-MINOR) buffer: increase Buffer.poolSize default to 64 KiB (Matteo Collina) #​63597
  • [bb2857b85a] - (SEMVER-MINOR) crypto: align key argument names in docs and error messages (Filip Skokan) #​62527
  • [b9d5e87880] - (SEMVER-MINOR) crypto: accept key data in crypto.diffieHellman() and cleanup DH jobs (Filip Skokan) #​62527
  • [ccd756d61e] - (SEMVER-MINOR) crypto: add TurboSHAKE and KangarooTwelve Web Cryptography algorithms (Filip Skokan) #​62183
  • [4c9251fc09] - (SEMVER-MINOR) http: add writeInformation to send arbitrary 1xx status codes (Tim Perry) #​63155
  • [8c989ec4a3] - (SEMVER-MINOR) inspector: expose precise coverage start to JS runtime (sangwook) #​63079
  • [3f54c8ba32] - Revert "stream: noop pause/resume on destroyed streams" (Stewart X Addison) #​63834
Commits

v24.17.0: 2026-06-18, Version 24.17.0 'Krypton' (LTS), @​aduh95

Compare Source

This is a security release.

Notable Changes
  • (CVE-2026-48618) tls: normalize hostname for server identity checks (Matteo Collina) – High
  • (CVE-2026-48933) crypto: guard WebCrypto cipher output length (Filip Skokan) – High
  • (CVE-2026-48615) lib,test: redact proxy credentials in tunnel errors (Matteo Collina) – Medium
  • (CVE-2026-48619) http2: cap originSet size to prevent unbounded memory growth (Matteo Collina) – Medium
  • (CVE-2026-48928) tls: fix case-sensitive SNI context matching (Matteo Collina) – Medium
  • (CVE-2026-48930) dns,net: reject hostnames with embedded NUL bytes (Matteo Collina) – Medium
  • (CVE-2026-48934) tls: bind reusable sessions to authenticated host (Matteo Collina) – Medium
  • (CVE-2026-48937) deps: fix integration issues with the latest nghttp2 – Medium
  • (CVE-2026-48617) permission: handle process.chdir on writereport (RafaelGSS) – Low
  • (CVE-2026-48931) http: fix response queue poisoning in http.Agent (Matteo Collina) – Low
  • (CVE-2026-48935) permission: disable FileHandle utimes with permission model (RafaelGSS) – Low
Commits
actions/node-versions (node)

v24.18.0: 24.18.0

Compare Source

Node.js 24.18.0

v24.17.0: 24.17.0

Compare Source

Node.js 24.17.0


Configuration

📅 Schedule: (in timezone US/Eastern)

  • Branch creation
    • "every weekend"
  • Automerge
    • At any time (no schedule defined)

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

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 force-pushed the renovate/node-24.x branch 5 times, most recently from 7c1dbe2 to 3fe86d1 Compare July 15, 2026 16:45
@AhtishamShahid

Copy link
Copy Markdown
Contributor

Heads up: this bump breaks the local dev watch (webpack) container because of the version split between package.json/CI and the Docker images.

What happens

  • package.json engines.node and CI → 24.18.0
  • Dockerfile / Dockerfile-node → 24.17.0 (the 24.18.0 image is still marked Pending above)

Yarn 1.x enforces the engines field by default, so on this branch the watch service exits 1 on startup:

error odl_video_service@0.0.0: The engine "node" is incompatible with this module. Expected version "24.18.0". Got "24.17.0"
error Found incompatible module.

Why CI/prod are unaffected

  • Dockerfile uses yarn install --frozen-lockfile --ignore-engines → bypasses the check
  • CI (ci.yml) also passes --ignore-engines and runs on node 24.18.0, which matches engines

Only webpack_dev_server.sh (run by the compose watch service, local dev only) uses a plain yarn install without --ignore-engines, so it's the sole thing that trips over the mismatch. Deployed dev/stage/prod all build via the Dockerfile and are fine.

Repro

git fetch origin pull/1547/head:pr-1547 && git checkout pr-1547
docker compose build web watch
docker compose up -d
docker compose logs watch   # -> engine incompatibility, container exited (1)

Suggested fix

Align webpack_dev_server.sh with what the Dockerfile and CI already do:

-     yarn install --frozen-lockfile && echo "Finished yarn install"
+     yarn install --frozen-lockfile --ignore-engines && echo "Finished yarn install"

This is one line, matches existing behavior, and future-proofs local dev against Renovate's recurring engines-vs-image version split. Alternatively, hold this PR until the Docker image digest catches up to 24.18.0 so all four references match.

@AhtishamShahid AhtishamShahid mentioned this pull request Jul 23, 2026
1 task
@renovate
renovate Bot force-pushed the renovate/node-24.x branch 8 times, most recently from a30169b to aa471f0 Compare July 28, 2026 23:44
@renovate renovate Bot changed the title Update Node.js Update Node.js to v24.18.0 Jul 28, 2026
@renovate
renovate Bot force-pushed the renovate/node-24.x branch 5 times, most recently from a2d2ce7 to 87d3bd7 Compare July 31, 2026 17:06
@mbertrand

Copy link
Copy Markdown
Member

@AhtishamShahid this is at 24.18.0 now and webpack container seems to be healthy with this latest version, will hold off on merging in case you want to take another look at it.

@renovate
renovate Bot force-pushed the renovate/node-24.x branch from 87d3bd7 to 2ce9a98 Compare August 1, 2026 19:08
@renovate
renovate Bot force-pushed the renovate/node-24.x branch from 2ce9a98 to ffd5ded Compare August 5, 2026 20:25
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.

2 participants