Skip to content

chore(deps): update node.js to v22.22.3#76

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

chore(deps): update node.js to v22.22.3#76
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/node-22.x

Conversation

@renovate

@renovate renovate Bot commented Oct 23, 2025

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
node final minor 22.20.022.22.3
node final minor 22.20.0-slim22.22.3-slim

Release Notes

nodejs/node (node)

v22.22.3: 2026-05-13, Version 22.22.3 'Jod' (LTS), @​marco-ippolito

Compare Source

Commits

v22.22.2: 2026-03-24, Version 22.22.2 'Jod' (LTS), @​RafaelGSS prepared by @​aduh95

Compare Source

This is a security release.

Notable Changes
  • (CVE-2026-21637) wrap SNICallback invocation in try/catch (Matteo Collina) - High
  • (CVE-2026-21710) use null prototype for headersDistinct/trailersDistinct (Matteo Collina) - High
  • (CVE-2026-21713) use timing-safe comparison in Web Cryptography HMAC (Filip Skokan) - Medium
  • (CVE-2026-21714) handle NGHTTP2_ERR_FLOW_CONTROL error code (RafaelGSS) - Medium
  • (CVE-2026-21717) test array index hash collision (Joyee Cheung) - Medium
  • (CVE-2026-21715) add permission check to realpath.native (RafaelGSS) - Low
  • (CVE-2026-21716) include permission check on lib/fs/promises (RafaelGSS) - Low
Commits

v22.22.1: 2026-03-05, Version 22.22.1 'Jod' (LTS)

Compare Source

Notable Changes
Commits

Note

PR body was truncated to here.


Configuration

📅 Schedule: (in timezone Europe/Vienna)

  • 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 enabled auto-merge (squash) October 23, 2025 07:00
@renovate renovate Bot force-pushed the renovate/node-22.x branch from 7518209 to e81ad27 Compare October 29, 2025 18:03
@renovate renovate Bot changed the title chore(deps): update node.js to v22.21.0 chore(deps): update node.js to v22.21.1 Oct 29, 2025
@renovate renovate Bot force-pushed the renovate/node-22.x branch from e81ad27 to d0d1f3b Compare November 5, 2025 21:16
@renovate renovate Bot force-pushed the renovate/node-22.x branch from d0d1f3b to 0b04509 Compare December 10, 2025 10:40
@renovate renovate Bot force-pushed the renovate/node-22.x branch from 0b04509 to 355848b Compare January 14, 2026 22:56
@renovate renovate Bot changed the title chore(deps): update node.js to v22.21.1 chore(deps): update node.js to v22.22.0 Jan 14, 2026
Comment thread images/node-rbenv/node-22/Dockerfile Outdated
@renovate renovate Bot force-pushed the renovate/node-22.x branch from 355848b to a2dac40 Compare February 2, 2026 19:07
Comment thread images/node-rbenv/node-22/Dockerfile Outdated

# renovate: datasource=github-releases depName=node/node versioning=loose
ARG NODE_VERSION=22.20.0
ARG NODE_VERSION=22.22.0

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bug: The PR incompletely updates the Node.js version for node-22 images, missing the -slim variants and the test expectations, which will cause CI tests to fail.
Severity: CRITICAL

Suggested Fix

Update the NODE_VERSION argument to 22.22.0 in images/node-rbenv/node-22-slim/Dockerfile and its ruby-3 sub-variant. Additionally, update the hardcoded version strings in the test file test/prepare-matrix.test.js to expect tags generated from version 22.22.0 for all node-22 images.

Prompt for AI Agent
Review the code at the location below. A potential bug has been identified by an AI
agent.
Verify if this is a real issue. If it is, propose a fix; if not, explain why it's not
valid.

Location: images/node-rbenv/node-22/Dockerfile#L6

Potential issue: The pull request updates the `NODE_VERSION` in the standard `node-22`
Dockerfiles to `22.22.0` but does not update the `node-22-slim` variants, which remain
at `22.20.0`. Furthermore, the associated test file, `test/prepare-matrix.test.js`, is
not updated and still expects tags for version `22.20.0` for all variants. Because the
tag generation script reads the version dynamically from the Dockerfiles, it will
generate `22.22.0` tags for the standard images, causing a mismatch with the hardcoded
test expectations and leading to a CI test failure.

Did we get this right? 👍 / 👎 to inform future reviews.

@renovate renovate Bot force-pushed the renovate/node-22.x branch from a2dac40 to e7cabb1 Compare March 6, 2026 01:45
@renovate renovate Bot changed the title chore(deps): update node.js to v22.22.0 chore(deps): update node.js to v22.22.1 Mar 6, 2026
Comment thread images/node-rbenv/node-22/Dockerfile Outdated

# renovate: datasource=github-releases depName=node/node versioning=loose
ARG NODE_VERSION=22.20.0
ARG NODE_VERSION=22.22.1

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bug: The Node.js version update was only applied to the non-slim Dockerfiles, causing a version mismatch with the -slim variants and breaking CI tests.
Severity: CRITICAL

Suggested Fix

Update the Node.js version to 22.22.1 in the remaining Dockerfiles (images/node-rbenv/node-22-slim/Dockerfile and images/node-rbenv/node-22-slim/ruby-3/Dockerfile). Additionally, update the hardcoded version tags in the test file test/prepare-matrix.test.js to expect version 22.22.1 instead of 22.20.0.

Prompt for AI Agent
Review the code at the location below. A potential bug has been identified by an AI
agent.
Verify if this is a real issue. If it is, propose a fix; if not, explain why it's not
valid.

Location: images/node-rbenv/node-22/Dockerfile#L6

Potential issue: The pull request incompletely updates the Node.js version from 22.20.0
to 22.22.1. While the standard Dockerfiles like `images/node-rbenv/node-22/Dockerfile`
are updated, the `-slim` variants are not. This discrepancy will cause CI tests to fail.
Specifically, the `prepare-matrix.js` script will generate tags for version `22.22.1`
for the standard images, but the tests in `test/prepare-matrix.test.js` have hardcoded
expectations for `22.20.0`, leading to an assertion failure. This also creates an
inconsistency where `slim` and non-`slim` images would run different patch versions of
Node.js if deployed.

Did we get this right? 👍 / 👎 to inform future reviews.

@renovate renovate Bot force-pushed the renovate/node-22.x branch from e7cabb1 to 2bd1d28 Compare March 25, 2026 16:48
@renovate renovate Bot changed the title chore(deps): update node.js to v22.22.1 chore(deps): update node.js to v22.22.2 Mar 25, 2026
@renovate renovate Bot force-pushed the renovate/node-22.x branch 15 times, most recently from 23123c0 to 1cfadae Compare April 29, 2026 18:42
@renovate renovate Bot force-pushed the renovate/node-22.x branch 29 times, most recently from 76ebcd4 to 2edbc31 Compare May 7, 2026 10:31
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