René's URL Explorer Experiment


Title: 2025-08-27, Version 24.7.0 (Current) by github-actions[bot] · Pull Request #59629 · nodejs/node · GitHub

Open Graph Title: 2025-08-27, Version 24.7.0 (Current) by github-actions[bot] · Pull Request #59629 · nodejs/node

X Title: 2025-08-27, Version 24.7.0 (Current) by github-actions[bot] · Pull Request #59629 · nodejs/node

Description: 2025-08-27, Version 24.7.0 (Current), @targos Notable Changes Post-Quantum Cryptography in node:crypto OpenSSL 3.5 on 24.x kicked off post-quantum cryptography efforts in Node.js by allowing use of NIST's post-quantum cryptography standards for future-proofing applications against quantum computing threats. The following post-quantum algorithms are now available in node:crypto: ML-KEM (FIPS 203, Module-Lattice-Based Key-Encapsulation Mechanism Standard) through new crypto.encapsulate() and crypto.decapsulate() methods. ML-DSA (FIPS 204, Module-Lattice-Based Digital Signature Standard) in the existing crypto.sign() and crypto.verify() methods. Contributed by Filip Skokan in #59259 and #59491. Modern Algorithms in Web Cryptography API The second substantial extension to the Web Cryptography API (globalThis.crypto.subtle) was recently accepted for incubation by WICG. The following algorithms and methods from this extension are now available in the Node.js Web Cryptography API implementation: AES-OCB ChaCha20-Poly1305 ML-DSA ML-KEM SHA-3 SHAKE subtle.getPublicKey() SubtleCrypto.supports() ... with more coming in future releases. Contributed by Filip Skokan in #59365, #59569, #59461, and #59539. Node.js execution argument support in single executable applications The single executable application configuration now supports additional fields to specify Node.js execution arguments and control how they can be extended when the application is run. execArgv takes an array of strings for the execution arguments to be used. execArgvExtension takes one of the following values: "none": No additional execution arguments are allowed. "cli": Additional execution arguments can be provided via a special command-line flag --node-options="--flag1 --flag2=value" at run time. "env" (default): Additional execution arguments can be provided via the NODE_OPTIONS environment variable at run time. For example, with the following configuration: { "main": "/path/to/bundled/script.js", "output": "/path/to/write/the/generated/blob.blob", "execArgv": ["--no-warnings"], "execArgvExtension": "cli", } If the generated single executable application is named sea, then running: sea --node-options="--max-old-space-size=4096" user-arg1 user-arg2 Would be equivalent to running: node --no-warnings --max-old-space-size=4096 /path/to/bundled/script.js user-arg1 user-arg2 Contributed by Joyee Cheung in #59314 and #59560. Root certificates updated to NSS 3.114 Certificates added: TrustAsia TLS ECC Root CA TrustAsia TLS RSA Root CA SwissSign RSA TLS Root CA 2022 - 1 Certificates removed: GlobalSign Root CA Entrust.net Premium 2048 Secure Server CA Baltimore CyberTrust Root Comodo AAA Services root XRamp Global CA Root Go Daddy Class 2 CA Starfield Class 2 CA Other Notable Changes [d3afc63c44] - (SEMVER-MINOR) crypto: add argon2() and argon2Sync() methods (Ranieri Althoff) #50353 [6ae202fcdf] - (SEMVER-MINOR) http: add Agent.agentKeepAliveTimeoutBuffer option (Haram Jeong) #59315 [dafee05358] - (SEMVER-MINOR) http2: add support for raw header arrays in h2Stream.respond() (Tim Perry) #59455 [8dc6f5b696] - (SEMVER-MINOR) stream: add brotli support to CompressionStream and DecompressionStream (Matthew Aitken) #59464 Commits [0fa22cbf7c] - benchmark: calibrate config v8/serialize.js (Rafael Gonzaga) #59586 [f5ece45b45] - benchmark: reduce readfile-permission-enabled config (Rafael Gonzaga) #59589 [8ebd4f4434] - benchmark: calibrate length of util.diff (Rafael Gonzaga) #59588 [7dee3ffd14] - benchmark: reflect current OpenSSL in crypto key benchmarks (Filip Skokan) #59459 [027b861ca1] - benchmark, test: replace CRLF variable with string literal (Lee Jiho) #59466 [89dd770889] - build: do not set -mminimal-toc with clang (Richard Lau) #59484 [e13de4542f] - child_process: remove unsafe array iteration (hotpineapple) #59347 [89fe63551e] - crypto: load system CA certificates off thread (Joyee Cheung) #59550 [152c5ef518] - (SEMVER-MINOR) crypto: add AES-OCB Web Cryptography algorithm (Filip Skokan) #59539 [c6c418343d] - crypto: update root certificates to NSS 3.114 (Node.js GitHub Bot) #59571 [18a2ee5b6c] - (SEMVER-MINOR) crypto: support ML-KEM in Web Cryptography (Filip Skokan) #59569 [72937e5144] - crypto: require HMAC key length with SHA-3 hashes in Web Cryptography (Filip Skokan) #59567 [b7383186c7] - crypto: fix subtle.getPublicKey error for secret type key inputs (Filip Skokan) #59558 [2d05c046db] - crypto: return cached copies from CryptoKey algorithm and usages getters (Filip Skokan) #59538 [207ffbeb07] - crypto: use CryptoKey internal slots in Web Cryptography (Filip Skokan) #59538 [4276516781] - crypto: normalize RsaHashedKeyParams publicExponent (Filip Skokan) #59538 [14741539a7] - (SEMVER-MINOR) crypto: support ML-KEM, DHKEM, and RSASVE key encapsulation mechanisms (Filip Skokan) #59491 [d3afc63c44] - (SEMVER-MINOR) crypto: add argon2() and argon2Sync() methods (Ranieri Althoff) #50353 [4fe383e45a] - (SEMVER-MINOR) crypto: support ML-DSA spki/pkcs8 key formats in Web Cryptography (Filip Skokan) #59365 [a95386fbf9] - (SEMVER-MINOR) crypto: subject some algorithms in Web Cryptography on BoringSSL absence (Filip Skokan) #59365 [3f47a2fb63] - (SEMVER-MINOR) crypto: add ChaCha20-Poly1305 Web Cryptography algorithm (Filip Skokan) #59365 [6fcce9058a] - (SEMVER-MINOR) crypto: add subtle.getPublicKey() utility function in Web Cryptography (Filip Skokan) #59365 [76cde76429] - (SEMVER-MINOR) crypto: add SHA-3 Web Cryptography digest algorithms (Filip Skokan) #59365 [247d017501] - (SEMVER-MINOR) crypto: add SHAKE Web Cryptography digest algorithms (Filip Skokan) #59365 [f4fbcca5ce] - (SEMVER-MINOR) crypto: add SubtleCrypto.supports feature detection in Web Cryptography (Filip Skokan) #59365 [a55382214f] - (SEMVER-MINOR) crypto: support ML-DSA in Web Cryptography (Filip Skokan) #59365 [c38988c860] - crypto: fix EVPKeyCtxPointer::publicCheck() (Tobias Nießen) #59471 [61c3bcdc56] - (SEMVER-MINOR) crypto: support ML-KEM KeyObject (Filip Skokan) #59461 [0821b446fb] - deps: update undici to 7.14.0 (Node.js GitHub Bot) #59507 [b3af17c065] - deps: V8: cherry-pick 7b91e3e2cbaf (Milad Fa) #59485 [9b69baf146] - deps: V8: cherry-pick 59d52e311bb1 (Milad Fa) #59485 [b4f202c2f1] - doc: improve sqlite.backup() progress/fulfillment documentation (René) #59598 [40b217a2f9] - doc: clarify experimental platform vulnerability policy (Matteo Collina) #59591 [cf84fffea5] - doc: link to TypedArray.from() in signature (Aviv Keller) #59226 [4bf6ed0bf5] - doc: fix typos in environment_variables.md (PhistucK) #59536 [1784c35a49] - doc: add security incident reponse plan (Rafael Gonzaga) #59470 [b962560240] - doc: clarify maxRSS unit in process.resourceUsage() (Alex Yang) #59511 [e6a6cdb9df] - doc: add missing Zstd strategy constants (RANDRIAMANANTENA Narindra Tiana Annaick) #59312 [a6a31cb467] - (SEMVER-MINOR) doc: compress Web Cryptography Algorithm matrix (Filip Skokan) #59365 [8f8960cfcb] - doc: fix the version tls.DEFAULT_CIPHERS was added (Allon Murienik) #59247 [9e76089f1a] - doc: clarify glob's exclude option behavior (hotpineapple) #59245 [dd5f835af7] - doc: add RafaelGSS as performance strategic lead (Rafael Gonzaga) #59445 [2b7a7a525e] - doc,crypto: add supported asymmetric key types section (Filip Skokan) #59492 [2fafe4c3bb] - esm: link modules synchronously when no async loader hooks are used (Joyee Cheung) #59519 [5347c4997a] - esm: show race error message for inner module job race (Joyee Cheung) #59519 [b56d8af2fe] - esm: sync-ify module translation (Joyee Cheung) #59453 [b4a23d6a69] - http: trim off brackets from IPv6 addresses with string operations (Krishnadas PC) #59420 [6ae202fcdf] - (SEMVER-MINOR) http: add Agent.agentKeepAliveTimeoutBuffer option (Haram Jeong) #59315 [dafee05358] - (SEMVER-MINOR) http2: add support for raw header arrays in h2Stream.respond() (Tim Perry) #59455 [b7ea39d860] - http2: report sent headers object in client stream dcs (Darshan Sen) #59419 [ebe9272dae] - inspector: initial support websocket inspection (Shima Ryuhei) #59404 [b35041c7dc] - inspector: prevent propagation of promise hooks to noPromise hooks (Shima Ryuhei) #58841 [fe7176d7c6] - lib: do not modify prototype deprecated asyncResource (encore) (Szymon Łągiewka) #59518 [93fc80a1e2] - (SEMVER-MINOR) lib: refactor kSupportedAlgorithms (Filip Skokan) #59365 [9a12f71ad9] - lib: simplify IPv6 checks in isLoopback() (Krishnadas) #59375 [566fb04c82] - meta: update devcontainer to the latest schema (Aviv Keller) #54347 [389a24bbff] - module: allow overriding linked requests for a ModuleWrap (Chengzhong Wu) #59527 [7880978fe3] - module: correctly detect top-level await in ambiguous contexts (Shima Ryuhei) #58646 [99128d9244] - node-api: link to other programming language bindings (Chengzhong Wu) #59516 [65c870e6cb] - node-api: clarify enum value ABI stability (Chengzhong Wu) #59085 [352d63541a] - sea: implement execArgvExtension (Joyee Cheung) #59560 [c6e3d5d98d] - (SEMVER-MINOR) sea: support execArgv in sea config (Joyee Cheung) #59314 [e7084df4db] - sqlite: add sqlite-type symbol for DatabaseSync (Alex Yang) #59405 [e2b6bdc640] - sqlite: handle ?NNN parameters as positional (Edy Silva) #59350 [99e4a12731] - sqlite: avoid useless call to FromMaybe() (Tobias Nießen) #59490 [dfd4962e5f] - src: enforce assumptions in FIXED_ONE_BYTE_STRING (Tobias Nießen) #58155 [93a368df04] - src: use simdjson to parse --snapshot-config (Joyee Cheung) #59473 [716750fcf8] - src: fix order of CHECK_NOT_NULL/dereference (Tobias Nießen) #59487 [44a8ecf8d4] - src: assert memory calc for max-old-space-size-percentage (Asaf Federman) #59460 [3462b46fca] - src: use simdjson::pad (0hm☘️) #59391 [3e1551d845] - src: move shared_ptr objects in KeyObjectData (Tobias Nießen) #59472 [c022c1f85a] - src: add internal GetOptionsAsFlags (Pietro Marchini) #59138 [c0f08454a3] - src: iterate metadata version entries with std::array (Chengzhong Wu) #57866 [f87836f3ae] - src: internalize v8::ConvertableToTraceFormat in traces (Chengzhong Wu) #57866 [852b8e46d8] - src: remove duplicate assignment of O_EXCL in node_constants.cc (Daniel Osvaldo R) #59049 [64ffde608f] - src: add Intel CET properties to large_pages.S (tjuhaszrh) #59363 [823dce32ec] - src: update OpenSSL pqc checks (Filip Skokan) #59436 [8dc6f5b696] - (SEMVER-MINOR) stream: add brotli support to CompressionStream and DecompressionStream (Matthew Aitken) #59464 [b2b8383755] - test: use mustSucceed in test-repl-tab-complete-import (Sohyeon Kim) #59368 [e3ad5cc2c6] - test: skip sea tests on Linux ppc64le (Richard Lau) #59563 [f78f47ca5a] - test: support standalone env comment in tests (Pietro Marchini) #59546 [0e8bc2c7ac] - test: rename test-net-server-drop-connections-in-cluster.js to -http- (Meghan Denny) #59532 [ed339580af] - test: lazy-load internalTTy (Pietro Marchini) #59517 [fe86bc6da8] - test: fix test-setproctitle status when ps is not available (Antoine du Hamel) #59523 [e517792973] - test: add parseTestMetadata support (Pietro Marchini) #59503 [31092972d6] - test: update WPT for WebCryptoAPI to ff26d9b307 (Node.js GitHub Bot) #59497 [16afd103cc] - (SEMVER-MINOR) test: add Web Cryptography wrap/unwrap vectors (Filip Skokan) #59365 [5598baf34e] - (SEMVER-MINOR) test: cleanup test-webcrypto-supports (Filip Skokan) #59365 [e7809d6ddb] - test: make test-debug-process locale-independent (BCD1me) #59254 [ca7856e73c] - test: mark test-wasi-pthread as flaky (Joyee Cheung) #59488 [0ecd82197f] - test: split test-wasi.js (Joyee Cheung) #59488 [0930c218d6] - test: deflake connection refused proxy tests (Joyee Cheung) #59476 [7f457f886a] - test: use case-insensitive path checking on Windows in fs.cpSync tests (Joyee Cheung) #59475 [37809115f9] - test: add missing hasPostData in test-inspector-emit-protocol-event (Shima Ryuhei) #59412 [f4722b1672] - test: refactor error checks to use assert.ifError/mustSucceed (Sohyeon Kim) #59424 [9ff71a672d] - test: fix typos (Lee Jiho) #59330 [9a7700da62] - test: skip test-watch-mode inspect when no inspector (James M Snell) #59440 [e964c4334e] - test_runner: do not error when getting fullName of root context (René) #59377 [e076f7857c] - test_runner: add option to rerun only failed tests (Moshe Atlow) #59443 [eb8b1939a4] - test_runner: fix isSkipped check in junit (Sungwon) #59414 [4e02ea1c52] - tools: update gyp-next to 0.20.3 (Node.js GitHub Bot) #59603 [99da7fbe11] - tools: avoid parsing test files twice (Pietro Marchini) #59526 [9a6a8e319b] - tools: update coverage GitHub Actions to fixed version (Rich Trott) #59512 [8d28236aff] - tools: fix return value of try_check_compiler (theanarkh) #59434 [52ab64ec3a] - tools: bump @eslint/plugin-kit from 0.3.3 to 0.3.4 in /tools/eslint (dependabot[bot]) #59271 [baa22893bb] - typings: add missing URLBinding methods (성우현 | Woohyun Sung) #59468 [b68e0d1eca] - util: fix error's namespaced node_modules highlighting using inspect (Ruben Bridgewater) #59446 [15ae21b88a] - util: add some additional error classes to wellKnownPrototypes (Mark S. Miller) #59456 [c38b7cfa35] - worker: fix worker name with \0 (theanarkh) #59214 [f54ace694a] - worker: add worker name to report (theanarkh) #58935

Open Graph Description: 2025-08-27, Version 24.7.0 (Current), @targos Notable Changes Post-Quantum Cryptography in node:crypto OpenSSL 3.5 on 24.x kicked off post-quantum cryptography efforts in Node.js by allowing use of...

X Description: 2025-08-27, Version 24.7.0 (Current), @targos Notable Changes Post-Quantum Cryptography in node:crypto OpenSSL 3.5 on 24.x kicked off post-quantum cryptography efforts in Node.js by allowing use of...

Opengraph URL: https://github.com/nodejs/node/pull/59629

X: @github

direct link

Domain: redirect.github.com

route-pattern/:user_id/:repository/pull/:id/files(.:format)
route-controllerpull_requests
route-actionfiles
fetch-noncev2:3f3a4a1b-a0f6-a937-4657-f9956056855a
current-catalog-service-hashae870bc5e265a340912cde392f23dad3671a0a881730ffdadd82f2f57d81641b
request-idC0EC:153758:FEA726:1569E1B:6A4C5601
html-safe-nonceb1b2ace4175453e108a313f2e40363a5deda7340d522703ccfe4e50cd0193ee8
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJDMEVDOjE1Mzc1ODpGRUE3MjY6MTU2OUUxQjo2QTRDNTYwMSIsInZpc2l0b3JfaWQiOiIzNTM5NTk3MjU2MTA4NTYxOTIxIiwicmVnaW9uX2VkZ2UiOiJpYWQiLCJyZWdpb25fcmVuZGVyIjoiaWFkIn0=
visitor-hmacf186d4840dad590044c06e61d3c5c2f7009c8babfd80599170cee61cb45f5408
hovercard-subject-tagpull_request:2773940872
github-keyboard-shortcutsrepository,pull-request-list,pull-request-conversation,pull-request-files-changed,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///pull_requests/show/files
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/nodejs/node/pull/59629/files
twitter:imagehttps://avatars.githubusercontent.com/in/15368?s=400&v=4
twitter:cardsummary_large_image
og:imagehttps://avatars.githubusercontent.com/in/15368?s=400&v=4
og:image:alt2025-08-27, Version 24.7.0 (Current), @targos Notable Changes Post-Quantum Cryptography in node:crypto OpenSSL 3.5 on 24.x kicked off post-quantum cryptography efforts in Node.js by allowing use of...
og:site_nameGitHub
og:typeobject
hostnamegithub.com
expected-hostnamegithub.com
None3d11bb817438277de2a940854450e83a7d32b6aeb5014e9e6b00a6423900251c
turbo-cache-controlno-preview
diff-viewunified
go-importgithub.com/nodejs/node git https://github.com/nodejs/node.git
octolytics-dimension-user_id9950313
octolytics-dimension-user_loginnodejs
octolytics-dimension-repository_id27193779
octolytics-dimension-repository_nwonodejs/node
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id27193779
octolytics-dimension-repository_network_root_nwonodejs/node
turbo-body-classeslogged-out env-production page-responsive full-width
disable-turbotrue
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release14099438da5379150f15a2892474c7c7e6c0e55e
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://redirect.github.com/nodejs/node/pull/59629/files#start-of-content
https://redirect.github.com/
Sign in https://redirect.github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fnodejs%2Fnode%2Fpull%2F59629%2Ffiles
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub Copilot appDirect agents from issue to mergehttps://github.com/features/ai/github-app
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
View all resourceshttps://github.com/resources
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
GitHub Starshttps://stars.github.com
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://redirect.github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fnodejs%2Fnode%2Fpull%2F59629%2Ffiles
Sign up https://redirect.github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fpull_requests%2Fshow%2Ffiles&source=header-repo&source_repo=nodejs%2Fnode
Reloadhttps://redirect.github.com/nodejs/node/pull/59629/files
Reloadhttps://redirect.github.com/nodejs/node/pull/59629/files
Reloadhttps://redirect.github.com/nodejs/node/pull/59629/files
Please reload this pagehttps://redirect.github.com/nodejs/node/pull/59629/files
nodejs https://redirect.github.com/nodejs
nodehttps://redirect.github.com/nodejs/node
Please reload this pagehttps://redirect.github.com/nodejs/node/pull/59629/files
Notifications https://redirect.github.com/login?return_to=%2Fnodejs%2Fnode
Fork 36k https://redirect.github.com/login?return_to=%2Fnodejs%2Fnode
Star 118k https://redirect.github.com/login?return_to=%2Fnodejs%2Fnode
Code https://redirect.github.com/nodejs/node
Issues 1.4k https://redirect.github.com/nodejs/node/issues
Pull requests 964 https://redirect.github.com/nodejs/node/pulls
Actions https://redirect.github.com/nodejs/node/actions
Projects https://redirect.github.com/nodejs/node/projects
Security and quality 0 https://redirect.github.com/nodejs/node/security
Insights https://redirect.github.com/nodejs/node/pulse
Code https://redirect.github.com/nodejs/node
Issues https://redirect.github.com/nodejs/node/issues
Pull requests https://redirect.github.com/nodejs/node/pulls
Actions https://redirect.github.com/nodejs/node/actions
Projects https://redirect.github.com/nodejs/node/projects
Security and quality https://redirect.github.com/nodejs/node/security
Insights https://redirect.github.com/nodejs/node/pulse
Sign up for GitHub https://redirect.github.com/signup?return_to=%2Fnodejs%2Fnode%2Fissues%2Fnew%2Fchoose
terms of servicehttps://docs.github.com/terms
privacy statementhttps://docs.github.com/privacy
Sign inhttps://redirect.github.com/login?return_to=%2Fnodejs%2Fnode%2Fissues%2Fnew%2Fchoose
targoshttps://redirect.github.com/targos
v24.xhttps://redirect.github.com/nodejs/node/tree/v24.x
v24.7.0-proposalhttps://redirect.github.com/nodejs/node/tree/v24.7.0-proposal
Conversation 12 https://redirect.github.com/nodejs/node/pull/59629
Commits 111 https://redirect.github.com/nodejs/node/pull/59629/commits
Checks 25 https://redirect.github.com/nodejs/node/pull/59629/checks
Files changed https://redirect.github.com/nodejs/node/pull/59629/files
Please reload this pagehttps://redirect.github.com/nodejs/node/pull/59629/files
2025-08-27, Version 24.7.0 (Current) https://redirect.github.com/nodejs/node/pull/59629/files#top
Show all changes 111 commits https://redirect.github.com/nodejs/node/pull/59629/files
52ab64e tools: bump @eslint/plugin-kit from 0.3.3 to 0.3.4 in /tools/eslint dependabot[bot] Aug 11, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/52ab64ec3a964b1b12d4f77864ab8e1b120904a5
9a12f71 lib: simplify IPv6 checks in isLoopback() pckrishnadas88 Aug 6, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/9a12f71ad933ee95e33ad87bd0d20c34a30bee85
b35041c inspector: prevent propagation of promise hooks to noPromise hooks islandryu Aug 12, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/b35041c7dccc44792cb086cadc769145ea9afc94
f54ace6 worker: add worker name to report theanarkh Aug 12, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/f54ace694a257921d8a625982816004dc9dfdc10
823dce3 src: update OpenSSL pqc checks panva Aug 12, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/823dce32ecca28a69fd31c0ea7a2394a21c25c1c
64ffde6 src: add Intel CET properties to large_pages.S tjuhaszrh Aug 13, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/64ffde608f5d47603ad1767e82b3e3cfb92b3a7e
6ae202f http: add Agent.agentKeepAliveTimeoutBuffer option haramj Aug 13, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/6ae202fcdfd9d4baaa274700ab56dafa058756c9
9a7700d test: skip test-watch-mode inspect when no inspector jasnell Aug 13, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/9a7700da62837dbbcf1f7fa58c15dc9f081cc087
eb8b193 test_runner: fix isSkipped check in junit mete0rfish Aug 13, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/eb8b1939a4ff4501af58af39d90b8eba7d7bbb44
9ff71a6 test: fix typos wlgh1553 Aug 13, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/9ff71a672d034c7e6f1da9b524fea13b3202b1f7
8d28236 tools: fix return value of try_check_compiler theanarkh Aug 13, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/8d28236aff9f3fbd36273a0bf018ef1d61100290
852b8e4 src: remove duplicate assignment of `O_EXCL` in node_constants.cc Tango992 Aug 13, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/852b8e46d83737018c4b609af5434fe403735241
c38b7cf worker: fix worker name with \0 theanarkh Aug 13, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/c38b7cfa354a2703f9873110768c978619e1b40f
dd5f835 doc: add RafaelGSS as performance strategic lead RafaelGSS Aug 13, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/dd5f835af7cca929a37d66051e4d5b7d88a2b257
b56d8af esm: sync-ify module translation joyeecheung Aug 14, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/b56d8af2fe97a3edc919adebbc11eaba97e0bfc4
f4722b1 test: refactor error checks to use assert.ifError/mustSucceed KimSH39 Aug 15, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/f4722b167274c1109d77242b957d0a1f7fd4724a
7dee3ff benchmark: reflect current OpenSSL in crypto key benchmarks panva Aug 15, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/7dee3ffd14da468671c779de0a5989b998d5cc49
f87836f src: internalize `v8::ConvertableToTraceFormat` in traces legendecas Apr 13, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/f87836f3ae6735b04e3ff40a38cd2e1146e37e85
c0f0845 src: iterate metadata version entries with std::array legendecas Aug 15, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/c0f08454a3c9ed65c8734d4a6641709f4e5dd66e
7880978 module: correctly detect top-level await in ambiguous contexts islandryu Aug 15, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/7880978fe3a22ea1f74ed5222d4e7849ad3dd352
c022c1f src: add internal GetOptionsAsFlags pmarchini Aug 16, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/c022c1f85a644aa05e711376d0e0f07ecaa44c77
3780911 test: add missing hasPostData in test-inspector-emit-protocol-event islandryu Aug 16, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/37809115f95df9adfb4eca5c68f85d9f18bad565
61c3bcd crypto: support ML-KEM KeyObject panva Aug 16, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/61c3bcdc567dd788d3eaba4fcc38717f39152afb
c38988c crypto: fix EVPKeyCtxPointer::publicCheck() tniessen Aug 16, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/c38988c860c74c1f654944a825f475e2df87f734
3e1551d src: move shared_ptr objects in KeyObjectData tniessen Aug 16, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/3e1551d8456d308edfc7432daa26094699db0c13
7f457f8 test: use case-insensitive path checking on Windows in fs.cpSync tests joyeecheung Aug 16, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/7f457f886a3c550d44bcac078f1feda69544baa8
b7ea39d http2: report sent headers object in client stream dcs RaisinTen Aug 17, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/b7ea39d8609f6ca7f9282c4dde614474421e7087
c6e3d5d sea: support execArgv in sea config joyeecheung Aug 17, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/c6e3d5d98de82a11273380b55e9f892419671e29
9b69baf deps: V8: cherry-pick 59d52e311bb1 May 28, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/9b69baf1466c01a698119b26cdcc354ad5e3fad1
b3af17c deps: V8: cherry-pick 7b91e3e2cbaf May 29, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/b3af17c0653f0721f730be3e9a2b9673eae57301
0930c21 test: deflake connection refused proxy tests joyeecheung Aug 14, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/0930c218d65ab6e069113362faa8d0d7005ad81f
3462b46 src: use simdjson::pad 0hmX Aug 17, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/3462b46fcab339fe108d4347f1824750418e6fad
44a8ecf src: assert memory calc for max-old-space-size-percentage Asaf-Federman Aug 18, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/44a8ecf8d44e65fb190c12222e0b9504a25fab6e
9a6a8e3 tools: update coverage GitHub Actions to fixed version Trott Aug 18, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/9a6a8e319bd6ae1a9735de8f74e1152fa26feb86
65c870e node-api: clarify enum value ABI stability legendecas Aug 18, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/65c870e6cb130fc3d7559a3d9e56b119566c5a80
99e4a12 sqlite: avoid useless call to FromMaybe() tniessen Aug 18, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/99e4a12731014ff3066ed93dc84c0f435e432b91
716750f src: fix order of CHECK_NOT_NULL/dereference tniessen Aug 18, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/716750fcf899d02db3737b3907f6fe0c6892116d
0ecd821 test: split test-wasi.js joyeecheung Aug 15, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/0ecd82197fc372b7b27dc7771ad738bc3b381e99
ca7856e test: mark test-wasi-pthread as flaky joyeecheung Aug 15, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/ca7856e73c4f17673c3e35bdb1ff67a3a9778b0e
9e76089 doc: clarify glob's exclude option behavior hotpineapple Aug 18, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/9e76089f1a2457e2fc80d683a55a27cb57fd5950
8f8960c doc: fix the version tls.DEFAULT_CIPHERS was added mureinik Aug 18, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/8f8960cfcbf16f8e583283984b9331b6d8fe0201
e7809d6 test: make test-debug-process locale-independent Amemome Aug 19, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/e7809d6ddb32804937968115aa1ffa69ae937bd2
2b7a7a5 doc,crypto: add supported asymmetric key types section panva Aug 19, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/2b7a7a525ea6047daa1ebab435a82153d447eebb
e076f78 test_runner: add option to rerun only failed tests MoLow Aug 19, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/e076f7857c6f1738acc7d91ed32a0635de4c8d40
15ae21b util: add some additional error classes to `wellKnownPrototypes` erights Aug 19, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/15ae21b88a2bf27052ab3b760e6e2a63e812b8dc
ebe9272 inspector: initial support websocket inspection islandryu Aug 19, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/ebe9272daedef4a493c07369ab70bc11263a9e5e
b68e0d1 util: fix error's namespaced node_modules highlighting using inspect BridgeAR Aug 19, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/b68e0d1ecade321622984e43c6b493ec467b4673
a553822 crypto: support ML-DSA in Web Cryptography panva Jul 30, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/a55382214fbb190f53600352b6c5deef3e68bc8b
f4fbcca crypto: add SubtleCrypto.supports feature detection in Web Cryptography panva Mar 2, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/f4fbcca5ce77813a04cda44e6b8b1bfd15005e5a
247d017 crypto: add SHAKE Web Cryptography digest algorithms panva Mar 4, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/247d01750159908eeebbee4ffba799eaa115aaa8
76cde76 crypto: add SHA-3 Web Cryptography digest algorithms panva Aug 28, 2024 https://redirect.github.com/nodejs/node/pull/59629/commits/76cde76429ee20a74c3eac5200e75b8d0874219c
6fcce90 crypto: add subtle.getPublicKey() utility function in Web Cryptography panva Aug 1, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/6fcce9058a1a1e8afd1fb75c154be045a74bc5c5
5598baf test: cleanup test-webcrypto-supports panva Aug 1, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/5598baf34e16fe899d5d5337a2c53ca826499520
a6a31cb doc: compress Web Cryptography Algorithm matrix panva Aug 1, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/a6a31cb467e723bb4551d7389419bfd0a26c71fd
16afd10 test: add Web Cryptography wrap/unwrap vectors panva Aug 8, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/16afd103cc5b81d16c26343034c842b36393fa14
3f47a2f crypto: add ChaCha20-Poly1305 Web Cryptography algorithm panva Aug 8, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/3f47a2fb63026fa5495284d9284f8dbafdc7d8c8
a95386f crypto: subject some algorithms in Web Cryptography on BoringSSL absence panva Aug 9, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/a95386fbf91a3a157b3b09bd2f24673576d18b21
93fc80a lib: refactor kSupportedAlgorithms panva Aug 9, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/93fc80a1e2d15f68c568357df96262a253e9baa2
4fe383e crypto: support ML-DSA spki/pkcs8 key formats in Web Cryptography panva Aug 11, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/4fe383e45ab6010dc9a4894a748ae75414cae696
e13de45 child_process: remove unsafe array iteration hotpineapple Aug 19, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/e13de4542f011aeb3e9d1f35d76ff0cd20bb4aa0
3109297 test: update WPT for WebCryptoAPI to ff26d9b307 nodejs-github-bot Aug 19, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/31092972d6aca1881f767b59c5b49a6e0715d68d
e6a6cdb doc: add missing Zstd strategy constants Annaick Aug 19, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/e6a6cdb9df24de5e2f7eb853a7b5e4a1c5d44699
d3afc63 crypto: add argon2() and argon2Sync() methods ranisalt Aug 19, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/d3afc63c44a8f7e8f862a53c36c529a49231abf9
b962560 doc: clarify maxRSS unit in `process.resourceUsage()` himself65 Aug 20, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/b96256024047345c6e88c7c887875d99a4bd271b
e517792 test: add parseTestMetadata support pmarchini Aug 20, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/e5177929735c4f6bd2dad3e5dd763ce867b7c6bc
027b861 benchmark, test: replace CRLF variable with string literal wlgh1553 Aug 20, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/027b861ca18688a9773114b752250ed377207abc
b4a23d6 http: trim off brackets from IPv6 addresses with string operations pckrishnadas88 Aug 20, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/b4a23d6a6974e0e9e51f5709b290c3a9ac39be59
89dd770 build: do not set `-mminimal-toc` with `clang` richardlau Aug 20, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/89dd770889cc500dd3fec724b89c346b79355177
1474153 crypto: support ML-KEM, DHKEM, and RSASVE key encapsulation mechanisms panva Aug 20, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/14741539a76002f395931dbff5f70f2cccb16b4e
5347c49 esm: show race error message for inner module job race joyeecheung Aug 18, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/5347c4997a14fca60fca24a6a6f4d35c19184a9c
2fafe4c esm: link modules synchronously when no async loader hooks are used joyeecheung Aug 18, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/2fafe4c3bb309f85587567ae66482259a02e595d
1784c35 doc: add security incident reponse plan RafaelGSS Aug 20, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/1784c35a49f2bf57425b492b290d5b8541b88b8c
fe86bc6 test: fix `test-setproctitle` status when `ps` is not available aduh95 Aug 20, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/fe86bc6da8ac793e56165129346a4717e324ccb1
99da7fb tools: avoid parsing test files twice pmarchini Aug 20, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/99da7fbe11bb2e9e7b1ac6ebde3553372af0e475
ed33958 test: lazy-load internalTTy pmarchini Aug 20, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/ed339580af788b93acd62b1b9ea97bb09d2bcfae
8dc6f5b stream: add brotli support to CompressionStream and DecompressionStream KhafraDev Aug 21, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/8dc6f5b696bebe227f67033f4163b7f559a45d2d
dafee05 http2: add support for raw header arrays in h2Stream.respond() pimterry Aug 21, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/dafee05358f3d3c4890a7cb0c670169f0e8889f8
0821b44 deps: update undici to 7.14.0 nodejs-github-bot Aug 21, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/0821b446fbe2e06820edc1cc690f03489d6ce6bd
4276516 crypto: normalize RsaHashedKeyParams publicExponent panva Aug 19, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/4276516781579695765b88b1e92b6b0bc0ea5bb1
207ffbe crypto: use CryptoKey internal slots in Web Cryptography panva Aug 19, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/207ffbeb07c7ce264ea6a4dfa2daf1ea343fc443
2d05c04 crypto: return cached copies from CryptoKey algorithm and usages getters panva Aug 19, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/2d05c046db21adac40753ab8795a1ee28c69a669
4bf6ed0 doc: fix typos in `environment_variables.md` phistuck Aug 21, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/4bf6ed0bf5914f026230d89333890d314f0d117c
0e8bc2c test: rename test-net-server-drop-connections-in-cluster.js to -http- nektro Aug 21, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/0e8bc2c7ac2a8e3e9543ca77b092195b62e3a892
baa2289 typings: add missing URLBinding methods whsung0330 Aug 21, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/baa22893bb1a5d6d3fd76ea4cca06a6c9d8761ec
cf84fff doc: link to `TypedArray.from()` in signature avivkeller Aug 21, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/cf84fffea524bc9fe78642a80f20f9afc468da3a
f78f47c test: support standalone env comment in tests pmarchini Aug 22, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/f78f47ca5a489e89e3fc499ff61241a88070f008
99128d9 node-api: link to other programming language bindings legendecas Aug 22, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/99128d9244163d20486fe3d6478564cabe154c2d
93a368d src: use simdjson to parse --snapshot-config joyeecheung Aug 22, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/93a368df046fa35b641db1d645b5029fc588efa5
e2b6bdc sqlite: handle ?NNN parameters as positional geeksilva97 Aug 22, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/e2b6bdc640a0bc5aad7eb63b091856ae03a4f123
389a24b module: allow overriding linked requests for a ModuleWrap legendecas Aug 22, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/389a24bbff9c16a4e3a71774d6c2392c5ca0ae76
b738318 crypto: fix subtle.getPublicKey error for secret type key inputs panva Aug 22, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/b7383186c748db5cec9ece1cde5a67650db0717d
e3ad5cc test: skip sea tests on Linux ppc64le richardlau Aug 22, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/e3ad5cc2c6d47f7f967555df92f17af6a5c92ed5
b2b8383 test: use mustSucceed in test-repl-tab-complete-import KimSH39 Aug 23, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/b2b83837556ba52e5108e544c8647ffdfd27ad60
72937e5 crypto: require HMAC key length with SHA-3 hashes in Web Cryptography panva Aug 23, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/72937e514428c0bcd9ae7aade2c8b617e3b8247b
566fb04 meta: update devcontainer to the latest schema avivkeller Aug 23, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/566fb04c82f59bf960496f1482873c31500bcdcb
18a2ee5 crypto: support ML-KEM in Web Cryptography panva Aug 21, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/18a2ee5b6c00424c3c0feff080d0919457fbca70
e964c43 test_runner: do not error when getting `fullName` of root context Renegade334 Aug 23, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/e964c4334e2b0d65c77bc70d962fe351a3770f20
e7084df sqlite: add sqlite-type symbol for DatabaseSync himself65 Aug 23, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/e7084df4db5a89ca20713d68c7b3bbc7149d40a5
c6c4183 crypto: update root certificates to NSS 3.114 nodejs-github-bot Aug 23, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/c6c418343d592297aacf52928ee274c169963c85
152c5ef crypto: add AES-OCB Web Cryptography algorithm panva Aug 24, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/152c5ef518c714dd6edfa5ea31bdb0e9758f7105
dfd4962 src: enforce assumptions in FIXED_ONE_BYTE_STRING tniessen Aug 24, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/dfd4962e5ff0dda19a6a08c6d34d812be34a870d
8ebd4f4 benchmark: calibrate length of util.diff RafaelGSS Aug 24, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/8ebd4f4434f6e79f12cad9cd1af30123c6837db1
f5ece45 benchmark: reduce readfile-permission-enabled config RafaelGSS Aug 24, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/f5ece45b45428c6e76c587cf07c52a26e9f554c8
40b217a doc: clarify experimental platform vulnerability policy mcollina Aug 25, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/40b217a2f92d733f2b7a25bfeebc3b3e7af06270
89fe635 crypto: load system CA certificates off thread joyeecheung Aug 25, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/89fe63551e1abff2931d4c88c216584c7143b365
352d635 sea: implement execArgvExtension joyeecheung Aug 25, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/352d63541a541a39affe603e48b0c58f7de68cbf
0fa22cb benchmark: calibrate config v8/serialize.js RafaelGSS Aug 25, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/0fa22cbf7c3253572744d1fab12b9494c6be727a
b4f202c doc: improve `sqlite.backup()` progress/fulfillment documentation Renegade334 Aug 25, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/b4f202c2f159b76434c7d2d6876a0d6049ab79ce
4e02ea1 tools: update gyp-next to 0.20.3 nodejs-github-bot Aug 26, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/4e02ea1c526aa6ea630a19208d477649bce2f7ad
fe7176d lib: do not modify prototype deprecated asyncResource (encore) slagiewka Aug 18, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/fe7176d7c6838fec4356e34ed67946873a7052c6
d795edb 2025-08-27, Version 24.7.0 (Current) nodejs-github-bot Aug 26, 2025 https://redirect.github.com/nodejs/node/pull/59629/commits/d795edb56765d4ec743bcda5a0c1452bed74de0c
Clear filters https://redirect.github.com/nodejs/node/pull/59629/files
Please reload this pagehttps://redirect.github.com/nodejs/node/pull/59629/files
Please reload this pagehttps://redirect.github.com/nodejs/node/pull/59629/files
.devcontainer.jsonhttps://redirect.github.com/nodejs/node/pull/59629/files#diff-8c75d30eaaa096649631dde76e321d13a6849c64137f3f7f777429ef9fd6b9e2
View file https://redirect.github.com/nodejs/node/blob/d795edb56765d4ec743bcda5a0c1452bed74de0c/.devcontainer.json
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://redirect.github.com/nodejs/node/pull/59629/{{ revealButtonHref }}
.devcontainer/devcontainer.jsonhttps://redirect.github.com/nodejs/node/pull/59629/files#diff-24ad71c8613ddcf6fd23818cb3bb477a1fb6d83af4550b0bad43099813088686
View file https://redirect.github.com/nodejs/node/blob/b18899500b59f40bab5138996fdace5461fee7fe/.devcontainer/devcontainer.json
Open in desktop https://desktop.github.com
Please reload this pagehttps://redirect.github.com/nodejs/node/pull/59629/files
.github/workflows/coverage-linux-without-intl.ymlhttps://redirect.github.com/nodejs/node/pull/59629/files#diff-2c1338fca1582603cf0665256edc6a7ac725128961dc29508ce7f8a2c494f667
View file https://redirect.github.com/nodejs/node/blob/d795edb56765d4ec743bcda5a0c1452bed74de0c/.github/workflows/coverage-linux-without-intl.yml
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://redirect.github.com/nodejs/node/pull/59629/{{ revealButtonHref }}
https://redirect.github.com/nodejs/node/pull/59629/files#diff-2c1338fca1582603cf0665256edc6a7ac725128961dc29508ce7f8a2c494f667
.github/workflows/coverage-linux.ymlhttps://redirect.github.com/nodejs/node/pull/59629/files#diff-6cba3942dfc59a35064405a295bfacaa584593c3a444c5d7963b4cb60df93cfa
View file https://redirect.github.com/nodejs/node/blob/d795edb56765d4ec743bcda5a0c1452bed74de0c/.github/workflows/coverage-linux.yml
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://redirect.github.com/nodejs/node/pull/59629/{{ revealButtonHref }}
https://redirect.github.com/nodejs/node/pull/59629/files#diff-6cba3942dfc59a35064405a295bfacaa584593c3a444c5d7963b4cb60df93cfa
.github/workflows/coverage-windows.ymlhttps://redirect.github.com/nodejs/node/pull/59629/files#diff-29094741d50149aa772b3e577ad509116bad722ad2de85689b6cb2c01e806a46
View file https://redirect.github.com/nodejs/node/blob/d795edb56765d4ec743bcda5a0c1452bed74de0c/.github/workflows/coverage-windows.yml
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://redirect.github.com/nodejs/node/pull/59629/{{ revealButtonHref }}
https://redirect.github.com/nodejs/node/pull/59629/files#diff-29094741d50149aa772b3e577ad509116bad722ad2de85689b6cb2c01e806a46
.gitignorehttps://redirect.github.com/nodejs/node/pull/59629/files#diff-bc37d034bad564583790a46f19d807abfe519c5671395fd494d8cce506c42947
View file https://redirect.github.com/nodejs/node/blob/d795edb56765d4ec743bcda5a0c1452bed74de0c/.gitignore
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://redirect.github.com/nodejs/node/pull/59629/{{ revealButtonHref }}
https://redirect.github.com/nodejs/node/pull/59629/files#diff-bc37d034bad564583790a46f19d807abfe519c5671395fd494d8cce506c42947
https://redirect.github.com/nodejs/node/pull/59629/files#diff-bc37d034bad564583790a46f19d807abfe519c5671395fd494d8cce506c42947
CHANGELOG.mdhttps://redirect.github.com/nodejs/node/pull/59629/files#diff-06572a96a58dc510037d5efa622f9bec8519bc1beab13c9f251e97e657a9d4ed
View file https://redirect.github.com/nodejs/node/blob/d795edb56765d4ec743bcda5a0c1452bed74de0c/CHANGELOG.md
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://redirect.github.com/nodejs/node/pull/59629/{{ revealButtonHref }}
https://redirect.github.com/nodejs/node/pull/59629/files#diff-06572a96a58dc510037d5efa622f9bec8519bc1beab13c9f251e97e657a9d4ed
https://redirect.github.com/nodejs/node/pull/59629/files#diff-06572a96a58dc510037d5efa622f9bec8519bc1beab13c9f251e97e657a9d4ed
SECURITY.mdhttps://redirect.github.com/nodejs/node/pull/59629/files#diff-f6ed156e4bf5c791680662464b94ea5d753f219ee816b385f67870e2c0d7d4c7
View file https://redirect.github.com/nodejs/node/blob/d795edb56765d4ec743bcda5a0c1452bed74de0c/SECURITY.md
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://redirect.github.com/nodejs/node/pull/59629/{{ revealButtonHref }}
https://redirect.github.com/nodejs/node/pull/59629/files#diff-f6ed156e4bf5c791680662464b94ea5d753f219ee816b385f67870e2c0d7d4c7
https://redirect.github.com/nodejs/node/pull/59629/files#diff-f6ed156e4bf5c791680662464b94ea5d753f219ee816b385f67870e2c0d7d4c7
https://redirect.github.com/nodejs/node/pull/59629/files#diff-f6ed156e4bf5c791680662464b94ea5d753f219ee816b385f67870e2c0d7d4c7
benchmark/common.jshttps://redirect.github.com/nodejs/node/pull/59629/files#diff-e326fe00e30ce0a71be8ef7751c791f7ebcdd0cab2e67827bcf7e5210ab0747c
View file https://redirect.github.com/nodejs/node/blob/d795edb56765d4ec743bcda5a0c1452bed74de0c/benchmark/common.js
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://redirect.github.com/nodejs/node/pull/59629/{{ revealButtonHref }}
https://redirect.github.com/nodejs/node/pull/59629/files#diff-e326fe00e30ce0a71be8ef7751c791f7ebcdd0cab2e67827bcf7e5210ab0747c
https://redirect.github.com/nodejs/node/pull/59629/files#diff-e326fe00e30ce0a71be8ef7751c791f7ebcdd0cab2e67827bcf7e5210ab0747c
benchmark/crypto/argon2.jshttps://redirect.github.com/nodejs/node/pull/59629/files#diff-5fb11b0d07664a2bc7c7c12add76193e2d46c260703a5efe7cbbe4ac12a54881
View file https://redirect.github.com/nodejs/node/blob/d795edb56765d4ec743bcda5a0c1452bed74de0c/benchmark/crypto/argon2.js
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://redirect.github.com/nodejs/node/pull/59629/{{ revealButtonHref }}
benchmark/crypto/create-keyobject.jshttps://redirect.github.com/nodejs/node/pull/59629/files#diff-c28f502ce406994fa702ed94e694e1da9e3321391777a2fef66a00f8241bfa27
View file https://redirect.github.com/nodejs/node/blob/d795edb56765d4ec743bcda5a0c1452bed74de0c/benchmark/crypto/create-keyobject.js
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://redirect.github.com/nodejs/node/pull/59629/{{ revealButtonHref }}
https://redirect.github.com/nodejs/node/pull/59629/files#diff-c28f502ce406994fa702ed94e694e1da9e3321391777a2fef66a00f8241bfa27
https://redirect.github.com/nodejs/node/pull/59629/files#diff-c28f502ce406994fa702ed94e694e1da9e3321391777a2fef66a00f8241bfa27
benchmark/crypto/kem.jshttps://redirect.github.com/nodejs/node/pull/59629/files#diff-475a3d10af33fcf44ca8c645ed797a318a136f5a18e73d851bff083842b36704
View file https://redirect.github.com/nodejs/node/blob/d795edb56765d4ec743bcda5a0c1452bed74de0c/benchmark/crypto/kem.js
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://redirect.github.com/nodejs/node/pull/59629/{{ revealButtonHref }}
benchmark/crypto/oneshot-sign.jshttps://redirect.github.com/nodejs/node/pull/59629/files#diff-26bc6c1fdddef8927412f842c56f1f4a87067679e8ff57ea2acd47bbf69f9af4
View file https://redirect.github.com/nodejs/node/blob/d795edb56765d4ec743bcda5a0c1452bed74de0c/benchmark/crypto/oneshot-sign.js
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://redirect.github.com/nodejs/node/pull/59629/{{ revealButtonHref }}
https://redirect.github.com/nodejs/node/pull/59629/files#diff-26bc6c1fdddef8927412f842c56f1f4a87067679e8ff57ea2acd47bbf69f9af4
https://redirect.github.com/nodejs/node/pull/59629/files#diff-26bc6c1fdddef8927412f842c56f1f4a87067679e8ff57ea2acd47bbf69f9af4
Please reload this pagehttps://redirect.github.com/nodejs/node/pull/59629/files
Please reload this pagehttps://redirect.github.com/nodejs/node/pull/59629/files
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.