Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Aug 18, 2025

This PR contains the following updates:

Package Type Update Change Age Confidence
node (source) minor 24.6.0 -> 24.11.1 age confidence
@types/node (source) devDependencies minor 24.2.1 -> 24.10.1 age confidence

Release Notes

nodejs/node (node)

v24.11.1

Compare Source

v24.11.0

Compare Source

v24.10.0: 2025-10-08, Version 24.10.0 (Current), @​RafaelGSS

Compare Source

Notable Changes
  • [31bb476895] - (SEMVER-MINOR) console: allow per-stream inspectOptions option (Anna Henningsen) #​60082
  • [3b92be2fb8] - (SEMVER-MINOR) lib: remove util.getCallSite (Rafael Gonzaga) #​59980
  • [18c79d9e1c] - (SEMVER-MINOR) sqlite: create authorization api (Guilherme Araújo) #​59928
Commits

v24.9.0: 2025-09-25, Version 24.9.0 (Current), @​targos

Compare Source

Notable Changes
  • [9b043a9096] - (SEMVER-MINOR) http: add shouldUpgradeCallback to let servers control HTTP upgrades (Tim Perry) #​59824
  • [a6456ab90a] - (SEMVER-MINOR) sqlite: cleanup ERM support and export Session class (James M Snell) #​58378
  • [5563361d22] - (SEMVER-MINOR) sqlite: add tagged template (0hm☘️) #​58748
  • [04013ee933] - (SEMVER-MINOR) worker: add heap profile API (theanarkh) #​59846
Commits

v24.8.0: 2025-09-10, Version 24.8.0 (Current), @​targos

Compare Source

Notable Changes
HTTP/2 Network Inspection Support in Node.js

Node.js now supports inspection of HTTP/2 network calls in Chrome DevTools for Node.js.

Usage

Write a test.js script that makes HTTP/2 requests.

const http2 = require('node:http2');

const client = http2.connect('https://nghttp2.org');

const req = client.request([
  ':path', '/',
  ':method', 'GET',
]);

Run it with these options:

node --inspect-wait --experimental-network-inspection test.js

Open about:inspect on Google Chrome and click on Open dedicated DevTools for Node.
The Network tab will let you track your HTTP/2 calls.

Contributed by Darshan Sen in #​59611.

Other Notable Changes
  • [7a8e2c251d] - (SEMVER-MINOR) crypto: support Ed448 and ML-DSA context parameter in node:crypto (Filip Skokan) #​59570
  • [4b631be0b0] - (SEMVER-MINOR) crypto: support Ed448 and ML-DSA context parameter in Web Cryptography (Filip Skokan) #​59570
  • [3e4b1e732c] - (SEMVER-MINOR) crypto: add KMAC Web Cryptography algorithms (Filip Skokan) #​59647
  • [b1d28785b2] - (SEMVER-MINOR) crypto: add Argon2 Web Cryptography algorithms (Filip Skokan) #​59544
  • [430691d1af] - (SEMVER-MINOR) crypto: support SLH-DSA KeyObject, sign, and verify (Filip Skokan) #​59537
  • [d6d05ba397] - (SEMVER-MINOR) worker: add cpu profile APIs for worker (theanarkh) #​59428
Commits

Configuration

📅 Schedule: 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.

@github-actions
Copy link
Contributor

github-actions bot commented Aug 18, 2025

Renovate PR Review Results

⚖️ Safety Assessment: ✅ Safe

🔍 Release Content Analysis

Node.js 24.6.0 → 24.11.1 Changes:

  • LTS Transition: v24.11.0 marked the transition to Long Term Support (LTS) with codename 'Krypton', extending support until April 2028
  • Minor Breaking Changes: Removal of util.getCallSite() in v24.10.0 (not used in this codebase)
  • Bug Fixes: v24.11.1 addressed a known issue with Buffer.allocUnsafe() to properly return uninitialized memory
  • Security Updates: Updated root certificates to NSS 3.116 and various dependency updates (OpenSSL 3.5.4, npm 11.6.2)
  • Performance Improvements: Console inspection performance enhancements, HTTP client response handling improvements

@types/node 24.2.1 → 24.10.1 Changes:

  • TypeScript type definitions updated to match Node.js 24.10.x APIs
  • No documented breaking changes in type definitions
  • Dependency update: undici-types from ~7.10.0 to ~7.16.0

🎯 Impact Scope Investigation

Codebase Analysis:

  • Node.js API Usage: Standard Node.js APIs used (node:fs, node:path, process.argv, process.cwd(), process.exit())
  • No Breaking API Usage: The codebase does not use util.getCallSite() which was removed in v24.10.0
  • Runtime Environment: Project configured for Bun 1.2.12 (primary) with Node.js as secondary runtime
  • Package Manager Support: Uses stable Node.js APIs for file system operations and child processes
  • Dependencies: All dependencies are compatible with Node.js 24.x

Configuration Impact:

  • mise.toml: Node.js version updated from 24.6.0 to 24.11.1
  • package.json: @types/node updated from 24.2.1 to 24.10.1
  • No engines field restrictions in package.json
  • Build system uses Bun's bundler, minimizing Node.js runtime dependencies

💡 Recommended Actions

Immediate Actions:

  • Safe to Merge: No code changes required
  • No Breaking Changes: All APIs used in the codebase remain stable
  • LTS Benefits: Upgrading to v24.11.1 provides long-term support until 2028

Post-Merge Verification:

  1. Run bun run fmt to ensure formatting passes
  2. Run bun run build to verify TypeScript compilation
  3. Test CLI functionality to ensure compatibility

Optional Enhancements:

  • Consider adding Node.js version constraints in package.json engines field for clarity
  • Update CLAUDE.md documentation to reflect Node.js 24.11.1 instead of 24.4.0

🔗 Reference Links

Generated by koki-develop/claude-renovate-review


🚫 Permission Denied Tool Executions

The following tool executions that Claude Code attempted were blocked due to insufficient permissions.
Consider adding them to allowed_tools if needed.

Run #19383372135 - 1 tool denied

Tool Input
WebFetch {"url":"https://www.npmjs.com/package/@types/node","prompt":"Find information about changes between @types/node versions 24.2.1 and 24.10.1, particularly focusing on any breaking changes or significant type definition updates"}

@renovate renovate bot changed the title chore(deps): update dependency @types/node to v24.3.0 chore(deps): update dependency node to v24.7.0 Aug 31, 2025
@renovate renovate bot force-pushed the renovate/node-24.x branch 2 times, most recently from b32597c to aba8334 Compare September 13, 2025 05:07
@renovate renovate bot changed the title chore(deps): update dependency node to v24.7.0 chore(deps): update dependency node to v24.8.0 Sep 13, 2025
@renovate renovate bot force-pushed the renovate/node-24.x branch 5 times, most recently from 057d31c to a6198d0 Compare September 21, 2025 02:21
@renovate renovate bot force-pushed the renovate/node-24.x branch from a6198d0 to 5591250 Compare September 28, 2025 00:44
@renovate renovate bot changed the title chore(deps): update dependency node to v24.8.0 chore(deps): update dependency node to v24.9.0 Sep 28, 2025
@renovate renovate bot force-pushed the renovate/node-24.x branch 4 times, most recently from 95d4b0c to 0ab7a06 Compare October 9, 2025 10:59
@renovate renovate bot force-pushed the renovate/node-24.x branch from 0ab7a06 to 4ab28e0 Compare October 11, 2025 00:28
@renovate renovate bot changed the title chore(deps): update dependency node to v24.9.0 chore(deps): update dependency node to v24.10.0 Oct 11, 2025
@renovate renovate bot force-pushed the renovate/node-24.x branch 3 times, most recently from 7b2d003 to 00568ed Compare October 19, 2025 12:42
@renovate renovate bot force-pushed the renovate/node-24.x branch 2 times, most recently from 10fb8d2 to cd07bc1 Compare October 24, 2025 00:51
@renovate renovate bot force-pushed the renovate/node-24.x branch from cd07bc1 to 27794b4 Compare October 31, 2025 01:52
@renovate renovate bot changed the title chore(deps): update dependency node to v24.10.0 chore(deps): update dependency node to v24.11.0 Oct 31, 2025
@renovate renovate bot force-pushed the renovate/node-24.x branch 2 times, most recently from c3b7317 to a6c576c Compare November 6, 2025 02:11
@renovate renovate bot force-pushed the renovate/node-24.x branch 2 times, most recently from 811164f to 3fb635a Compare November 14, 2025 02:43
@renovate renovate bot changed the title chore(deps): update dependency node to v24.11.0 chore(deps): update dependency node to v24.11.1 Nov 14, 2025
@renovate renovate bot force-pushed the renovate/node-24.x branch from 3fb635a to e05c9db Compare November 15, 2025 02:57
@koki-develop koki-develop merged commit 665995d into main Nov 30, 2025
4 checks passed
@koki-develop koki-develop deleted the renovate/node-24.x branch November 30, 2025 12:23
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