Skip to content

Update Node.js - #1547

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

Update Node.js#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

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Type Update Change Pending
node (source) engines minor 24.16.024.19.0
node uses-with minor 24.16.024.19.0
node (source) final minor 24.16.024.18.1 24.19.0
node (source) stage minor 24.16.024.18.1 24.19.0

Release Notes

nodejs/node (node)

v24.19.0: 2026-08-03, Version 24.19.0 'Krypton' (LTS), @​aduh95

Compare Source

Notable Changes
  • [d08872b530] - (SEMVER-MINOR) buffer: implement blob.textStream() (Matthew Aitken) #​64036
  • [35222948be] - (SEMVER-MINOR) deps: update OpenSSL build config to support compression (Tim Perry) #​62217
  • [d6ab039f24] - (SEMVER-MINOR) doc: update blockList stability status to release candidate (alphaleadership) #​63050
  • [1da05fb79d] - doc: mark stream.compose stable (Matteo Collina) #​62562
  • [3c1636dabf] - (SEMVER-MINOR) esm: add --experimental-import-text flag (Efe) #​62300
  • [e323e877be] - (SEMVER-MINOR) fs: support caller-supplied readFile() buffers (Matteo Collina) #​63634
  • [c1248c9544] - (SEMVER-MINOR) http: add httpValidation option to configure header value validation (RajeshKumar11) #​61597
  • [a534b65815] - (SEMVER-MINOR) net: support TCP_KEEPINTVL and TCP_KEEPCNT in setKeepAlive (Guy Bedford) #​63825
  • [a23cdec683] - (SEMVER-MINOR) perf_hooks: sample delay per event loop iteration (Pablo Erhard) #​62935
  • [7428b57a37] - (SEMVER-MINOR) src: allow empty --experimental-config-file (Marco Ippolito) #​61610
  • [e57597173c] - (SEMVER-MINOR) stream: expose ReadableStreamTee (Matteo Collina) #​64195
  • [5396235993] - (SEMVER-MINOR) tls: report negotiated TLS groups (Filip Skokan) #​64119
  • [5e901b5cd9] - (SEMVER-MINOR) tls: add certificateCompression option (Tim Perry) #​62217
Commits

Note

PR body was truncated to here.


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.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • 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
mbertrand previously approved these changes Jul 31, 2026
@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 2 times, most recently from 2ce9a98 to ffd5ded Compare August 5, 2026 20:25
@renovate
renovate Bot force-pushed the renovate/node-24.x branch from ffd5ded to a208f3a Compare August 11, 2026 03:00
@renovate renovate Bot changed the title Update Node.js to v24.18.0 Update Node.js Aug 11, 2026
@renovate
renovate Bot force-pushed the renovate/node-24.x branch from a208f3a to ce8832e Compare August 13, 2026 06:04
@renovate
renovate Bot force-pushed the renovate/node-24.x branch from ce8832e to a312dd1 Compare August 13, 2026 20:52
@renovate renovate Bot changed the title Update Node.js Update Node.js to v24.18.1 Aug 13, 2026
@renovate
renovate Bot force-pushed the renovate/node-24.x branch from a312dd1 to f2f6f94 Compare August 17, 2026 03:51
@renovate renovate Bot changed the title Update Node.js to v24.18.1 Update Node.js Aug 17, 2026
@renovate
renovate Bot force-pushed the renovate/node-24.x branch from f2f6f94 to 65c7e0f Compare August 18, 2026 03:48
@renovate
renovate Bot force-pushed the renovate/node-24.x branch from 65c7e0f to eb41703 Compare August 19, 2026 07:09
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