2026-08-26, Version 26.8.0 (Current) - #65551
Merged
Merged
Conversation
CONNECT tunnels are full-duplex. When the upstream socket receives a FIN while the client-to-upstream pipe is still draining, the default socket behavior can produce EPIPE or ECONNRESET errors. Keep the upstream socket half-open so both directions can drain. Separate request logs from transport errors to verify that teardown completes without errors. Signed-off-by: Kamat, Trivikram <16024985+trivikr@users.noreply.github.com> Assisted-by: codex:gpt-5.6-sol PR-URL: #64973 Refs: https://github.com/nodejs/reliability/issues?q=%22test-https-proxy-request-invalid-char-in-url%22 Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
This does not solve the remaining underlying deadlock issue, but does bound the test behaviour in a way that seems to avoid failures in practice. Deadlock fix to come separately later. Co-authored-by: Filip Skokan <panva.ip@gmail.com> Signed-off-by: Tim Perry <pimterry@gmail.com> PR-URL: #65079 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Filip Skokan <panva.ip@gmail.com>
Bumps [js-yaml](https://github.com/nodeca/js-yaml) from 4.2.0 to 4.3.1. - [Changelog](https://github.com/nodeca/js-yaml/blob/4.3.1/CHANGELOG.md) - [Commits](nodeca/js-yaml@4.2.0...4.3.1) --- updated-dependencies: - dependency-name: js-yaml dependency-version: 4.3.1 dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> PR-URL: #65130 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: René <contact.9a5d6388@renegade334.me.uk> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Bumps [js-yaml](https://github.com/nodeca/js-yaml) from 4.2.0 to 4.3.1. - [Changelog](https://github.com/nodeca/js-yaml/blob/4.3.1/CHANGELOG.md) - [Commits](nodeca/js-yaml@4.2.0...4.3.1) --- updated-dependencies: - dependency-name: js-yaml dependency-version: 4.3.1 dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> PR-URL: #65129 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: René <contact.9a5d6388@renegade334.me.uk> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
`libnode.a` is now always produced, unless configured with flag `--shared`. This deprecates the no-op flag `--enable-static`. Signed-off-by: Chengzhong Wu <cwu631@bloomberg.net> PR-URL: #65103 Refs: #65026 Refs: #63626 Reviewed-By: Richard Lau <richard.lau@ibm.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
PR-URL: #59357 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Ryuhei Shima <shimaryuhei@gmail.com> Reviewed-By: Gürgün Dayıoğlu <hey@gurgun.day> Reviewed-By: Stefan Stojanovic <stefan.stojanovic@janeasystems.com>
PR-URL: #65154 Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
PR-URL: #65153 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
PR-URL: #65151 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
PR-URL: #65150 Reviewed-By: Filip Skokan <panva.ip@gmail.com> Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
PR-URL: #65155 Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: Filip Skokan <panva.ip@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
sqlite3_prepare_v2() returns SQLITE_OK without producing a statement when its input holds no SQL, such as a comment. PrepareStatement() only checked the return code, so it cached a StatementSync wrapping a null sqlite3_stmt. Executing it reached sqlite3_clear_bindings(), which only guards against a null statement under SQLITE_ENABLE_API_ARMOR, and segfaulted. Reject such input instead of caching it. The StatementSync methods already avoid the crash because their IsFinalized() guard treats a null statement as finalized. Fixes: #65149 Signed-off-by: Trevor Burnham <trevorburnham@gmail.com> PR-URL: #65157 Fixes: #65149 Reviewed-By: René <contact.9a5d6388@renegade334.me.uk> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Apply the same check to DatabaseSync::Prepare() so that statement-less
SQL is rejected at preparation instead of on first use. This matches
SQLite's own oo1 JavaScript API, which throws when the SQL contains no
statements rather than exposing the C API's null statement pointer.
Previously db.prepare('-- comment') returned a StatementSync whose
statement_ was null. Every method on it threw "statement has been
finalized", which was misleading because nothing had been finalized, and
the object was still inserted into statements_. Since IsFinalized() is
true for a null statement, its destructor skipped UntrackStatement() and
left a dangling pointer in the set that a later close() would finalize.
Refs: #65157 (comment)
Refs: https://sqlite.org/wasm/doc/trunk/api-oo1.md
Signed-off-by: Trevor Burnham <trevorburnham@gmail.com>
PR-URL: #65157
Fixes: #65149
Reviewed-By: René <contact.9a5d6388@renegade334.me.uk>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Signed-off-by: Rawal27 <obviouslykamal@gmail.com> PR-URL: #64953 Reviewed-By: Aviv Keller <me@aviv.sh> Reviewed-By: Rich Trott <rtrott@gmail.com>
Signed-off-by: Antoine du Hamel <duhamelantoine1995@gmail.com> PR-URL: #65162 Reviewed-By: Jithil P Ponnan <jithil@outlook.com> Reviewed-By: Filip Skokan <panva.ip@gmail.com> Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Aviv Keller <me@aviv.sh> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Some general modernizations of templates Signed-off-by: James M Snell <jasnell@gmail.com> PR-URL: #65148 Reviewed-By: Aviv Keller <me@aviv.sh> Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Node.js ships two pre-generated sets of OpenSSL assembly: `asm`, which contains the AVX-512 routines, and `asm_avx2`, which does not. The set is picked in deps/openssl/openssl.gyp based on `gas_version` or `nasm_version`, but configure.py only reports `gas_version` when the compiler is not clang, because clang uses its own integrated assembler and has no GNU assembler version to report. Consequently every clang build silently falls back to the AVX-512-less `asm_avx2` set, with no warning. The result is that `ossl_vaes_vpclmulqdq_capable()` is assembled as a stub that always returns 0, so OpenSSL never selects `ossl_aes_gcm_encrypt_avx512()` and uses the older AES-NI path instead. On an Intel Xeon Gold 6548N this costs roughly 1.6x on AES-256-GCM and 1.8x on both ChaCha20-Poly1305 and RSA-2048 signing. This is not limited to custom builds: BUILDING.md documents that the official linux-x64 binaries are produced with clang, and the shipped v25.x and v26.x binaries contain the stub. Accept `llvm_version` in the condition, the way deps/openssl/openssl.gypi already does for the AVX2 set. clang's integrated assembler has handled AVX512IFMA since 3.9 and VAES / VPCLMULQDQ since 6.0; 8.0 is used as a conservative floor, well below the clang 19.1 that Node.js already requires. PR-URL: #65136 Reviewed-By: Aviv Keller <me@aviv.sh> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Signed-off-by: Antoine du Hamel <duhamelantoine1995@gmail.com> PR-URL: #65166 Reviewed-By: Filip Skokan <panva.ip@gmail.com> Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Signed-off-by: Augustin Mauroy <97875033+AugustinMauroy@users.noreply.github.com> PR-URL: #65171 Reviewed-By: Mike McCready <66998419+MikeMcC399@users.noreply.github.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Richard Lau <richard.lau@ibm.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Under run({ testTagFilters, isolation: 'process' }) the parent
process's FileTest wrappers have empty tag sets, so any include filter
filtered out the wrappers themselves and no test file was ever
spawned. The same applied to the single re-spawned child in watch mode
with isolation 'none'.
Exempt file wrappers from tag filtering: the filter is re-emitted to
the child process and applied there, matching isolation 'none'
results.
This also removes the testTagFilterExpressions bookkeeping and the
isolation-conditional assignment of testTagFilters, both of which
existed only to keep the parent process from filtering its own file
wrappers. The parent now always holds the canonical filter values and
re-emits them to child processes.
Refs: #63221
Signed-off-by: atlowChemi <chemi@atlow.co.il>
PR-URL: #65170
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Signed-off-by: Antoine du Hamel <duhamelantoine1995@gmail.com> PR-URL: #63135 Refs: nodejs/Release#1154 Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Richard Lau <richard.lau@ibm.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
Signed-off-by: Max H Fisher <mfisher187@bloomberg.net> PR-URL: #64684 Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
Signed-off-by: Guilherme Araújo <arauujogui@gmail.com> PR-URL: #62419 Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Optimized V8 fast API calls truncate out-of-range pointer BigInts. Validate them against uintptrMax before invoking the raw function so optimized calls match the generic and shared-buffer paths. Signed-off-by: Kamat, Trivikram <16024985+trivikr@users.noreply.github.com> Assisted-by: codex:gpt-5.6-sol PR-URL: #65032 Fixes: #65031 Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Add a CredentialsBinding declaration for internalBinding('credentials')
and wire it into InternalBindingMap.
Signed-off-by: HoonDongKang <d159123@naver.com>
PR-URL: #65036
Reviewed-By: Daeyeon Jeong <daeyeon.dev@gmail.com>
fs.md describes the bigint variant inside the fs.Stats section and has no separate fs.BigIntStats section to link to. Signed-off-by: greenhead <shren0812@gmail.com> PR-URL: #65045 Reviewed-By: Daeyeon Jeong <daeyeon.dev@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
By shifting from individual bool fields to a packed struct we can save 20 bytes per TLSWrap instance Signed-off-by: James M Snell <jasnell@gmail.com> PR-URL: #65144 Reviewed-By: Tim Perry <pimterry@gmail.com> Reviewed-By: Gürgün Dayıoğlu <hey@gurgun.day> Reviewed-By: Tobias Nießen <tniessen@tnie.de>
This boosts RPS performance for the common API case where you call `res.end(data)` with the entire response by up to 9%. Signed-off-by: Tim Perry <pimterry@gmail.com> PR-URL: #65466 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Gürgün Dayıoğlu <hey@gurgun.day>
Signed-off-by: RafaelGSS <rafael.nunu@hotmail.com> PR-URL: #65432 Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Beth Griggs <bethanyngriggs@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
tls.connect() with malformed ALPNProtocols hit CHECK_EQ(0, SSL_set_alpn_protos(...)) in the C++ layer and aborted the process with SIGABRT. Validate in JS instead, in convertALPNProtocols, so both client and server fail early with a recoverable ERR_INVALID_ARG_VALUE: - zero-length string protocols now throw from convertProtocols - wire-format buffers are checked for zero-length and truncated entries - an empty buffer or array is still accepted and means skip ALPN, matching the historical behavior for [] The C++ CHECK_EQ is left unchanged: once JS has validated the input, a non-zero SSL_set_alpn_protos return is an internal invariant failure rather than user-facing input. Fixes: #65069 Signed-off-by: Sankalp Thakur <sankalphimself@gmail.com> PR-URL: #65076 Reviewed-By: Tim Perry <pimterry@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Signed-off-by: Hamid Reza Ghavami <hamidr.ghavami@gmail.com> PR-URL: #64238 Reviewed-By: Jordan Harband <ljharb@gmail.com> Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
Signed-off-by: Taeuk Ha <tomcat0519@naver.com> PR-URL: #65481 Reviewed-By: Daeyeon Jeong <daeyeon.dev@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Beth Griggs <bethanyngriggs@gmail.com>
The encode-and-enqueue transform walked the chunk code unit by code
unit, materializing a single-character string per index and building
the output with string concatenation. The only state that crosses
chunks is a trailing high (leading) surrogate, and TextEncoder.encode's
USVString conversion already replaces every interior lone surrogate
with U+FFFD, which is exactly what the spec loop produces. Join a
pending high surrogate with the incoming chunk, hold back a new
trailing high surrogate, and encode the rest in a single native call.
The streaming decode path also reuses a single options object instead
of allocating { stream: true } per chunk.
An encoding-streams benchmark is added since the suite had no
TextEncoderStream/TextDecoderStream row. Encoding improves by ~546%
with 1KB string chunks and ~20% with 16-character chunks; decode is
unchanged.
Signed-off-by: Matteo Collina <hello@matteocollina.com>
PR-URL: #65414
Reviewed-By: Gürgün Dayıoğlu <hey@gurgun.day>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Mattias Buelens <mattias@buelens.com>
Signed-off-by: RafaelGSS <rafael.nunu@hotmail.com> PR-URL: #65358 Reviewed-By: James M Snell <jasnell@gmail.com>
This is the certdata.txt[0] from NSS 3.126. This is the version of NSS that shipped in Firefox 154.0 on 2026-08-18. Certificates added: - SECOM TLS RSA Root CA 2024 - SECOM TLS ECC Root CA 2024 - Telia EC TLS Root CA v3 - Telia RSA TLS Root CA v3 Certificates removed: - ePKI Root Certification Authority - Atos TrustedRoot 2011 [0] https://raw.githubusercontent.com/nss-dev/nss/refs/tags/NSS_3_126_RTM/lib/ckfw/builtins/certdata.txt PR-URL: #65495 Reviewed-By: René <contact.9a5d6388@renegade334.me.uk> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
We're seeing a number of repeated mistakes in AI-generated contributions, including agents using `Signed-off-by`, creating what appear to be unsupervised PRs, appearing to respond to comments without human oversight, etc. Having an AGENTS.md file with specific instructions to the agent on what to avoid should help. Signed-off-by: James M Snell <jasnell@gmail.com> PR-URL: #65493 Reviewed-By: Robert Nagy <ronagy@icloud.com> Reviewed-By: Filip Skokan <panva.ip@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: Daeyeon Jeong <daeyeon.dev@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Mike McCready <66998419+MikeMcC399@users.noreply.github.com> Reviewed-By: Beth Griggs <bethanyngriggs@gmail.com>
Normalize each stateless transform result before passing it to the next transform in a fused run. This ensures that subsequent transforms always receive Uint8Array[] batches in both synchronous and asynchronous pipelines. Signed-off-by: Kamat, Trivikram <16024985+trivikr@users.noreply.github.com> Assisted-by: codex:gpt-5.6-sol PR-URL: #65367 Fixes: #65366 Reviewed-By: James M Snell <jasnell@gmail.com>
readdir({ recursive: true }) asked the binding for names only and then
called internalModuleStat() on every entry to find the directories to
descend into; with withFileTypes it built the Dirents and still stat()ed
every entry that was not already a directory. Both variants also ran
path.join() and path.relative() per entry to build the relative result.
Ask the binding for file types in all cases, descend into directories
directly, and only stat() symbolic links and entries of unknown type
(which is what could point to a directory). The relative name is the
parent's prefix plus the entry name. Results, their order and the
symlink-following behavior are unchanged for fs.readdirSync, fs.readdir
and fs.promises.readdir.
The known_issues test for Buffer paths (#58892) called back without
checking the error; the error now reaches the callback instead of being
thrown from the completion handler, so the test asserts success to keep
expressing the issue.
Signed-off-by: Shelley Vohr <shelley.vohr@gmail.com>
PR-URL: #65487
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Gürgün Dayıoğlu <hey@gurgun.day>
While more readable, the removed closure overhead unlocks 10-20% in eventtarget.js benchmark. Signed-off-by: Szymon Łągiewka <slagiewka@users.noreply.github.com> PR-URL: #64473 Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
Notable changes: benchmark: * (SEMVER-MINOR) add --analyze mode to compare.js (James M Snell) #65416 crypto: * update root certificates to NSS 3.126 (Node.js GitHub Bot) #65495 * (SEMVER-MINOR) enable SIV and GCM-SIV modes in Cipher/Decipher APIs (Filip Skokan) #63411 diagnostics_channel: * mark TracingChannel as stable (Abdelrahman Awad) #64525 lib,src: * (SEMVER-MINOR) improve histogram implementation (James M Snell) #65024 net: * (SEMVER-MINOR) improve performance of net.BlockList (James M Snell) #64974 perf_hooks: * (SEMVER-MINOR) add statistical hypothesis testing to histogram (James M Snell) #65416 repl: * add basic syntax highlighting (Aviv Keller) #64591 sqlite: * (SEMVER-MINOR) add StatementSync.prototype.close() (Guilherme Araújo) #64232 * (SEMVER-MINOR) add StatementSync.prototype[Symbol.dispose]() (Guilherme Araújo) #64232 util: * (SEMVER-MINOR) add non-throwing MIMEType.parse (James M Snell) #64965 zlib: * (SEMVER-MINOR) add ZipEntry, ZipFile, and ZipBuffer (Philipp Dunkel) #64339 PR-URL: #65551
Collaborator
|
Review requested:
|
aduh95
marked this pull request as ready for review
August 25, 2026 23:05
aduh95
approved these changes
Aug 25, 2026
Collaborator
Codecov Report❌ Patch coverage is Additional details and impacted files@@ Coverage Diff @@
## v26.x #65551 +/- ##
==========================================
+ Coverage 90.20% 90.38% +0.17%
==========================================
Files 741 744 +3
Lines 241431 250463 +9032
Branches 45726 47783 +2057
==========================================
+ Hits 217784 226374 +8590
- Misses 15126 15377 +251
- Partials 8521 8712 +191
🚀 New features to boost your workflow:
|
ronag
approved these changes
Aug 26, 2026
Contributor
|
Why is #64606 not included? |
Collaborator
aduh95
pushed a commit
that referenced
this pull request
Aug 26, 2026
Notable changes: benchmark: * (SEMVER-MINOR) add --analyze mode to compare.js (James M Snell) #65416 crypto: * update root certificates to NSS 3.126 (Node.js GitHub Bot) #65495 * (SEMVER-MINOR) enable SIV and GCM-SIV modes in Cipher/Decipher APIs (Filip Skokan) #63411 diagnostics_channel: * mark TracingChannel as stable (Abdelrahman Awad) #64525 lib,src: * (SEMVER-MINOR) improve histogram implementation (James M Snell) #65024 net: * (SEMVER-MINOR) improve performance of net.BlockList (James M Snell) #64974 perf_hooks: * (SEMVER-MINOR) add statistical hypothesis testing to histogram (James M Snell) #65416 repl: * add basic syntax highlighting (Aviv Keller) #64591 sqlite: * (SEMVER-MINOR) add StatementSync.prototype.close() (Guilherme Araújo) #64232 * (SEMVER-MINOR) add StatementSync.prototype[Symbol.dispose]() (Guilherme Araújo) #64232 util: * (SEMVER-MINOR) add non-throwing MIMEType.parse (James M Snell) #64965 zlib: * (SEMVER-MINOR) add ZipEntry, ZipFile, and ZipBuffer (Philipp Dunkel) #64339 PR-URL: #65551
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
74234ee30e] - (SEMVER-MINOR) benchmark: add --analyze mode to compare.js (James M Snell) #654164232997fa2] - crypto: update root certificates to NSS 3.126 (Node.js GitHub Bot) #65495f0531f1c87] - (SEMVER-MINOR) crypto: enable SIV and GCM-SIV modes in Cipher/Decipher APIs (Filip Skokan) #634113f4b80ebb5] - diagnostics_channel: mark TracingChannel as stable (Abdelrahman Awad) #64525753033c110] - (SEMVER-MINOR) lib,src: improve histogram implementation (James M Snell) #650243d7d277493] - (SEMVER-MINOR) net: improve performance of net.BlockList (James M Snell) #649749e8e9080fd] - (SEMVER-MINOR) perf_hooks: add statistical hypothesis testing to histogram (James M Snell) #65416c18b0aa54e] - repl: add basic syntax highlighting (Aviv Keller) #6459158ea88e1d3] - (SEMVER-MINOR) sqlite: add StatementSync.prototype.close() (Guilherme Araújo) #642327c61b08aed] - (SEMVER-MINOR) sqlite: add StatementSync.prototype[Symbol.dispose]() (Guilherme Araújo) #642324299cd5897] - (SEMVER-MINOR) util: add non-throwing MIMEType.parse (James M Snell) #64965df48191061] - (SEMVER-MINOR) zlib: add ZipEntry, ZipFile, and ZipBuffer (Philipp Dunkel) #64339Commits
162257b403] - assert: improve documentation wording (Kamal Rawal) #6495374234ee30e] - (SEMVER-MINOR) benchmark: add --analyze mode to compare.js (James M Snell) #654162cb96dd462] - benchmark: add test-only and mock timers cases (Luan Muniz) #64097562168f93f] - benchmark: applyhighWaterMarkin webstreamspipe-to(Matteo Collina) #65138fbec4eb386] - benchmark: complete the sqlite is-transaction fix (Edy Silva) #65218d8acfc45f1] - benchmark: add test runner hooks and options (Luan Muniz) #6375413e7d54f67] - buffer: prevent string write offset overflow (Matteo Collina) #65043615273deac] - buffer: support aligned allocations (Robert Nagy) #65003bc6b630e21] - buffer: treat detached ArrayBuffers as empty (Archkon) #64504ddf9f9d265] - build: target Power 9 and z14 (Richard Lau) #65439fda8ee894e] - build: use build-ci for benchmark merge-commit rebuild (Yagiz Nizipli) #6536203692786ef] - build: add simdutf dir to include path in GN build (Shelley Vohr) #653823da555a3ed] - build: pass target architecture to small-icu genccode (ulofiai) #65095ffe1e7cbea] - build: update binary-upload to use correct tarball name (Stewart X Addison) #6528250174cb94a] - build: deprecate always enabled--enable-static(Chengzhong Wu) #6510328f662b424] - build: check FIPS option value in node.gyp (Filip Skokan) #6498229a2ecefeb] - build: handle malformed OpenSSL macros (Filip Skokan) #649826deeef1801] - build: enable perfetto updater (Chengzhong Wu) #64966312f0c6a7e] - build: add host toolset to perfetto_sdk (Ryuhei Shima) #647511a4f5e537b] - build,win: add PGO workload scripts (Stefan Stojanovic) #6369621655dccbc] - child_process: keep SIGWINCH from killing on Win (Kirill Saied) #645104232997fa2] - crypto: update root certificates to NSS 3.126 (Node.js GitHub Bot) #65495f0531f1c87] - (SEMVER-MINOR) crypto: enable SIV and GCM-SIV modes in Cipher/Decipher APIs (Filip Skokan) #63411109566a2f7] - crypto: fix missing error checks on ASN1_STRING_to_UTF8() (Nora Dossche) #65200501f81612d] - crypto: improve SubtleCrypto.supports() accuracy (Filip Skokan) #65222137ff67fd3] - crypto: use available BoringSSL APIs (Filip Skokan) #654230e87576ed4] - crypto: remove obsolete BoringSSL shims (Filip Skokan) #65423af867ce3e4] - crypto: add mgf1Hash for RSA-OAEP (Adam Mcgrath) #6507366ee4792bf] - crypto: disable non-FIPS WebCrypto paths in FIPS mode (Filip Skokan) #651726a142c03e9] - crypto: read WebCrypto inputs through primordials (Filip Skokan) #6511592e3110462] - crypto: fix disabling FIPS mode (Filip Skokan) #64982d69bed2f49] - debugger: wait for target startup (Filip Skokan) #651945c7c0b8b15] - deps: update zlib to 1.3.2.1-motley-8002e91 (Node.js GitHub Bot) #653164cb6b1335e] - deps: update simdjson to 4.6.7 (Node.js GitHub Bot) #65318a39ad67482] - deps: update googletest to 49495eacfdbda3f4b6ba219923fedbb2e3f99376 (Node.js GitHub Bot) #6531746762dad57] - deps: cherry-pick libuv/libuv@e640dc9 (ulofiai) #65118abb7a15a8d] - deps: update perfetto to 57.2 (Node.js GitHub Bot) #65114ebd8c6ba52] - deps: float ICU-23262 patch for icu78 (René) #64678f2cc681109] - deps: enable AVX-512 OpenSSL asm with clang (Daniel Lemire) #65136f45dc92913] - deps: update undici to 8.10.0 (Node.js GitHub Bot) #651554160dfdf81] - deps: update googletest to d89aac5f0dd4021198d903d39de16f896726de21 (Node.js GitHub Bot) #65153631d3aa37b] - deps: update libffi to 3.8.0 (Node.js GitHub Bot) #65154788976c626] - dgram: don't swallow bind errors when callback is provided (armanmikoyan) #62602d286423043] - diagnostics_channel: validate before channel activation (Trivikram Kamat) #653133f4b80ebb5] - diagnostics_channel: mark TracingChannel as stable (Abdelrahman Awad) #64525152a326f92] - dns: validate address type in lookupService (Lazizbek Ergashev) #6487800c71fec93] - dns: validate port range insetServers()(René) #65021e9327d1422] - dns: fix crash on setServers with port 0 (Lazizbek Ergashev) #650099e227ef20d] - doc: update AHAFS reference link (Taeuk Ha) #654815fbf6c57af] - doc: fix property names in os.networkInterfaces() example (Jihwan) #6546913f16d28d1] - doc: fix broken links in cli.md (Donghoon Kang) #654120f36ee3755] - doc: remove outdated WASI version fallback (이혜미) #653031ad09f712a] - doc: fix broken GYP link in n-api.md (Donghoon Kang) #6541324cd694237] - doc: document that an empty OPENSSL_CONF skips config loading (Orgad Shaneh) #64949dae434132e] - doc: fix broken TLS security level example (soreavis) #6539196b91dc987] - doc: clarify socket destroyed behavior (Dayun) #653959d8d27d444] - doc: update outdated nodejs.org guide links (Donghoon Kang) #6539465f675086e] - doc: clarify that ipv4 mapped to ipv6 are classified as ipv6 (Vedant Kulkarni) #6211789aba0c311] - doc: clarify how fs.Dirent file types are determined (soreavis) #645323ed0492f52] - doc: update security release prepare command (Rafael Gonzaga) #6469963583c4e75] - doc: clarify copyFile symlink behavior (T) #62941abfc51f757] - doc: document setRawMode write access on Windows (Erik Demaine) #638564a784cb3e6] - doc: document per-architecture fast FFI argument limits (Seongeun Lee) #65207262f966155] - doc: add missing return types in fs.md (Chaseton Collins) #65307695cd896a7] - doc: add missing return types in buffer.md (Yuya Inoue) #65308676a1228cd] - doc: fix lint clean command (greenhead) #652749ea318d4e3] - doc: fix typo in onboarding.md (서울민트초코) #652953b6a918ab4] - doc: add missingadded:tags tofs.lchmod(Lazizbek Ergashev) #65283a77b1e61df] - doc: fix SQLite changeset constant descriptions (greenhead) #65265ab50ae60e4] - doc: document open pull request limit (Matteo Collina) #65250e2f4ea03a3] - doc: document http2 header constants (Harjoth Khara) #645485b5509d0d3] - doc: create ai-guidelines and include to CONTRIBUTING (Rafael Gonzaga) #62105c63e873073] - doc: fix broken fs.BigIntStats link in vfs.md (greenhead) #65045d6059e84c0] - doc: update synopsis (Augustin Mauroy) #6517143f1dc03e7] - doc: document close() error when in a sqlite callback (Trivikram Kamat) #650908f5f48ad96] - doc: fix broken internal links (greenhead) #649015b64b37739] - doc: report proper return type on urlPattern.test (Brian Muenzenmeyer) #648319633bb0f29] - doc: fix permission documentation examples (greenhead) #64897e52e573fd7] - doc: document sqlite parameter binding (Guilherme Araújo) #65089fa52f11d3b] - doc: finalize statements in sqlite examples (Guilherme Araújo) #650880157c45012] - doc: document quic stopSending() and resetStream() (Issac) #64888003a913799] - doc: clarify sqlite bare parameter default (Sumit Kumar Das) #62009c5588d71ad] - doc: remove usage ofutil.inherits(Augustin Mauroy) #60817673db40fbf] - doc: fix grammar in worker_threads.md (이혜미) #64913ee5f72cf16] - doc: fix broken link (Antoine du Hamel) #650780450ab6c6a] - doc: updatenode.1to fix linter (Antoine du Hamel) #650539a256b0693] - doc: clarify OpenSSL FIPS configuration (Filip Skokan) #64982c321752dcb] - doc: remove--expose-gcflag from CLI documentation (Dario Piotrowicz) #589090cf79931bb] - doc: document ArrayBuffer support in pbkd2Sync (kyungrae2002) #649763b8a0bacaa] - doc: correct default highWaterMark values (Yilong Li) #64617be313012e4] - doc: use ffi.suffix in permission example (agape1225) #649144a1c9a7ee0] - esm: avoid super-linear data URL MIME regex (Sumit Kumar Das) #61951b1770bc196] - esm: only register text format when enabled (Efe Karasakal) #64992f48927fe5b] - esm: fix wasm import name in error message (이혜미) #649508d48adf688] - events: inline iterationCondition hybrid dispatch closure (Szymon Łągiewka) #64473b827c0047e] - events: inline createEvent hybrid dispatch closure (Szymon Łągiewka) #644737670c81d99] - ffi: prefer canonical type names (Trivikram Kamat) #654171fe7a1c33d] - ffi: validate the value passed to the float setters (Soul Lee) #65342537feecd0b] - ffi: reject direct SharedArrayBuffer pointers (Trivikram Kamat) #652330002f0a718] - ffi: remove dead null check in callback arguments (Trivikram Kamat) #649989024ec27b6] - ffi: keep FFI functions non-constructible (Trivikram Kamat) #651849b4f349b01] - ffi: refresh cached string buffers on every call (Trivikram Kamat) #65051eacd65e9c2] - ffi: reject detached ArrayBufferViews (Trivikram Kamat) #65086be2ab89730] - ffi: reject detached ArrayBuffers as pointers (Trivikram Kamat) #650836f9e0846ea] - ffi: validate fast pointer BigInt argument ranges (Trivikram Kamat) #650323e6688c5e3] - ffi: reuse the callable created per symbol (Trivikram Kamat) #649718b0bdd931c] - ffi: shrink trampoline placement probe window (Trivikram Kamat) #649699c282c4532] - ffi: accept pointer BigInts in multi-argument fast calls (Trivikram Kamat) #64964b98294b57d] - ffi: support SharedArrayBuffer in getRawPointer (Junsoo Ha) #648645cac7c2c55] - ffi: reuse libffi call plans (Yilong Li) #64958262f0ec82a] - fs: stop stat()ing every entry in recursive readdir (Shelley Vohr) #65487e3ae912e9a] - fs: use sized reads for large files in readFileUtf8 (Shelley Vohr) #65328bc1e19b4b7] - fs: fix realpath of namespaced drive paths (Jason Zhang) #653786673ebadf2] - fs: abort in-flight stat operations (Mert Can Altin) #6314374dcdbb5f1] - fs: fix glob early return skipping sibling entries (Srinu desetti) #648956305a744df] - fs: pass symlink type in cp when filter is provided (Jerry Zhao) #62654c5cb6bc7e2] - fs: allocate FSReqPromise stat arrays lazily (Samuel Attard) #63886992af05719] - fs: fix out-of-bounds write in mkdtemp for long prefixes (Hierax_Umbra) #647702de845b2dd] - fs: treatstd::errc::permission_deniedasEPERMerror (Kirill Saied) #6469877fedbd350] - fs: read small files in one thread pool round trip (Shelley Vohr) #65327810929b6dd] - Revert "fs: fix close listener leak in FileHandle streams" (Mike McCready) #653878873b91fce] - fs: fix close listener leak in FileHandle streams (Y1D7NG) #64227656cfaeb2d] - fs: add windowsHandle option to file streams (Kirill Saied) #63851c2c31d69fd] - http: improve performance with known-length calls to end() (Tim Perry) #654667e9204f4b3] - http: use intrusive lists in ConnectionsList (Matteo Collina) #6529698e6272c70] - http: cache maxHeaderPairs per header section (GetThatCookie) #649886c3516f179] - http: fix keylog listener setup on existing agent sockets (Shani Singh) #65066dad9548fbc] - http: emit drain on socket takeover and avoid stale HWM reuse (Naman Trivedi) #64991563cab119b] - http2: avoid uaf while receiving and sending rst_stream (esgor) #64166099801641b] - inspector: avoid calling into JS from V8 interrupts (Joyee Cheung) #65028b71d5de0b8] - lib: use bracket notation instead of startsWith/endsWith for single char (Taejin Kim) #61500e8e2abcc8d] - lib: load fewer builtins when bootstrapping without a snapshot (Shelley Vohr) #653293619dc0601] - lib: fix ERR_INVALID_ARG_TYPE with --enable-source-maps (June) #63215ad7c67026b] - lib: harden webidl dictionary member reads (Filip Skokan) #65115b5182f0a1c] - lib: use validateArray for array arguments (greenhead) #649597f7df06821] - lib: add and test [EnforceRange] in webcrypto dictionaries (Filip Skokan) #65091753033c110] - (SEMVER-MINOR) lib,src: improve histogram implementation (James M Snell) #650248d39d0d660] - meta: add a root-level AGENTS.md (James M Snell) #654933770f9baea] - meta: move targos to emeritus (Michaël Zasso) #65393a9b31dfe30] - meta: add unified http api initiative (James M Snell) #651396bffc306aa] - meta: move one or more collaborators to emeritus (Node.js GitHub Bot) #651824abd1c8100] - meta: add support for alpha prerelease tag (Antoine du Hamel) #63135132c578e97] - meta: add Aviv Keller to.mailmap(Aviv Keller) #650487aff78d231] - meta: update sccache to 0.17.0 (René) #6498597a437e7ea] - module: add a read-only mode to the compile cache (Shelley Vohr) #653025821362819] - module: do not split a portable compile cache by uid (Shelley Vohr) #65293eb5d66e856] - module: report unreadable package.json (Paul Bouchon) #6522343757d07c1] - module: cache nearest parent package.json per directory (Shelley Vohr) #65326d7805e00dc] - module: fix --check on ambiguous ESM files (Paul Bouchon) #65203646221a495] - net: handle undefined parent in _unrefTimer and _destroy (Shivay-98) #646443d7d277493] - (SEMVER-MINOR) net: improve performance of net.BlockList (James M Snell) #649749e8e9080fd] - (SEMVER-MINOR) perf_hooks: add statistical hypothesis testing to histogram (James M Snell) #6541601a8ae0ce6] - permission: guard UDP handle adoption (Rafael Gonzaga) #65358ac3c412aaf] - permission: enforce addon permission in GetLinkedBinding (Rafael Gonzaga) #654328765afd4c2] - process: validate resource stats array offsets (Archkon) #65098d0447c93f6] - quic: changes for nghttp3_conn_close_stream2 (Marten Richter) #6457491393898b5] - quic: mark drain promise handled (James M Snell) #653195c9576bf50] - quic: reset rejected HTTP/3 request streams with H3_REQUEST_REJECTED (trivenay) #65442ec956f2abc] - quic: write desired size needs update on maxstream (Marten Richter) #6476841c510803d] - quic: do not destroy incoming streams that have a consumer (trivenay) #65335009e376581] - quic: fix wake up blob (Marten Richter) #640444674a10368] - quic: convert incoming :status header to number (Hallison Pereira Melo) #635895953165f53] - quic: fix infinite loop if STOP_SENDING received on a buffering stream (Tim Perry) #64715bb499c312e] - repl: keep entries added while history file is loading (Mhayk Whandson) #64513825fcfe4d5] - repl: add benchmarks (Aviv Keller) #64590c18b0aa54e] - repl: add basic syntax highlighting (Aviv Keller) #64591f32a8631ad] - sea: avoid dangling CLI option pointers (Archkon) #647553126ce5779] - sea: handle NUL bytes in asset keys (Archkon) #6477364a8843ff2] - sea: reject trailing content in config JSON (Archkon) #647741d9dd252f1] - sea: reject malformed --node-options values (Archkon) #648036ec735c910] - sqlite: reject reentry while binding parameters (Trevor Burnham) #6529460cb384c15] - sqlite: remove unused column name helper (Trivikram Kamat) #65401fce6754a83] - sqlite: reject busy statement finalization in authorizer (Trivikram Kamat) #65369e2f952f2ff] - sqlite: prevent reentrant session.close() (Trivikram Kamat) #653490e8af3378a] - sqlite: reuse cached column names in statement all() and get() (Edy Silva) #65276e6bfec91be] - sqlite: validate StatementSync.run() integers (Trivikram Kamat) #65178bbb1226dbe] - sqlite: add diagnostic channel (Guilherme Araújo) #622416302168de8] - sqlite: add stmt persistent flag (Guilherme Araújo) #627572989311d81] - sqlite: reject connection access from authorizer callbacks (Trevor Burnham) #6515672c37b133e] - sqlite: expose prepared statement statistics (Edy Silva) #645413e50a2f1e9] - sqlite: manage sqlite3_stmt lifetime with RAII (Guilherme Araújo) #624193ab7e72555] - sqlite: check sqlite3_step() and sqlite3_reset() results (semimikoh) #633195e387ce979] - sqlite: reject statement-less SQL in prepare() (Trevor Burnham) #6515783169e58f3] - sqlite: reject statement-less SQL in SQLTagStore (Trevor Burnham) #651577f31f6226e] - sqlite: isolate applyChangeset filter errors (Trivikram Kamat) #64823c89878c3c8] - sqlite: reject deserialize() while in a callback (Trivikram Kamat) #647965a852b22d4] - sqlite: check null returns from sqlite value functions (Nora Dossche) #632885cb78ed300] - sqlite: validate maxSize argument in createTagStore() (Anshika Jain) #63792ca885876f6] - sqlite: refactor error helpers and user function pointers (Ali Hassan) #6279406b1758dcd] - sqlite: reject non-positive backup rates (Trivikram Kamat) #64893ce0ca47023] - sqlite: clear SQLTagStore bindings (Matteo Collina) #6504149fb028714] - sqlite: bind Boolean (mike-git374) #6200109d0da99e9] - sqlite: fix undefined behaviour inSession::Changeset()(Nora Dossche) #6363758ea88e1d3] - (SEMVER-MINOR) sqlite: add StatementSync.prototype.close() (Guilherme Araújo) #642327c61b08aed] - (SEMVER-MINOR) sqlite: add StatementSync.prototype[Symbol.dispose]() (Guilherme Araújo) #642329167ebd32b] - sqlite: bind ArrayBuffer (mike-git374) #620615da6eaa8af] - sqlite: prevent database close during callbacks (Matteo Collina) #6474329d794bc84] - src: fix heap value deduplication in embedder graph (Ilyas Shabi) #64801b405e9b039] - src: fix out-of-bounds write when transcoding odd-length ucs2 (nashit hayat) #64512101a215472] - src: use simdutf for two-byte utf8 conversion (Mert Can Altin) #62248340b98346f] - src: run same-priority platform tasks in posting order (Shelley Vohr) #6535383a7949c18] - src: define O_SYNC, O_DSYNC and O_DIRECT on Windows (Kirill Saied) #6470732bb197f2a] - src: use simdutf for two-byte strings in UTF-8 writes (Shelley Vohr) #65324613be79cf4] - src: add v8::Local specialization for MaybeStackBuffer (James M Snell) #65159922d47cbd7] - src: escape Windows environment variables in task runner (Antoine du Hamel) #652173a47f1f282] - src: apply minor namespace format tweak in permissions (James M Snell) #65158981cfa537d] - src: simplify permissions with BooleanPermissions (James M Snell) #651585954b13f88] - src: simplify includes in permissions (James M Snell) #65158d4ced88c09] - src: apply a modest performance perf to permissions (James M Snell) #65158efb649ec26] - src: make permission storage a bit more efficient (James M Snell) #65158521aaf10fc] - src: apply multiple general cleanups to permissions (James M Snell) #65158ac920e0d2b] - src: simplify c++ diagnostics channel API (James M Snell) #65158ec8fe275a1] - src: make minor cleanup to permission checks (James M Snell) #65158968bdd0135] - src: use DictionaryTemplate for permission diag channel message (James M Snell) #65158f77aa2f703] - src: cache permission strings (James M Snell) #651584018f3a776] - src: shave about 20 bytes off each TLSWrap instance (James M Snell) #65144b7a23426d9] - src: add SetAbortHandler (Max H Fisher) #646843cfe19489c] - src: use concepts where appropriate (James M Snell) #65148d8a0f288ab] - src: match cmd.exe case-insensitively in task runner (Archkon) #64907262d88e6c2] - src: reuse cached env strings in remaining files (Seongeun Lee) #65039ad35fe97f0] - src: expose Windows-only fs open flags (Kirill Saied) #647758c4531bbc9] - src: report why --enable-fips failed (Filip Skokan) #64979a293dbf0e1] - src: update repeated use strings to env (James M Snell) #64760044402cf0e] - src: use UTF-8 for task runner filesystem paths (Archkon) #648685b7d02e401] - stream: normalize fused stateless transform results (Trivikram Kamat) #653671d6ec2ddc5] - stream: encode whole chunks in TextEncoderStream (Matteo Collina) #654140afda47ca4] - stream: prevent share from eagerly draining source (Trivikram Kamat) #65338dc51c7926e] - stream: drain pending writes before broadcast end (Trivikram Kamat) #65334a77f9f7a32] - stream: reuse unexposed managed read buffers (GetThatCookie) #64990c42fbcc0d1] - stream: avoid duplicated endReadableNT scheduling (Matteo Collina) #653109ec9383d1d] - stream: decouple transform backpressure changes (Matteo Collina) #65143a9dc50d275] - stream: reject pull on signal abort during flush (Trivikram Kamat) #65346815424db74] - stream: avoid leaking consumers on signal failure (Trivikram Kamat) #652996a2e0561e8] - stream: use validateObject for zlib/iter params (greenhead) #650154f6f2cfffa] - stream: use validateNumber for BYOB reader options.min (greenhead) #650144d297428e6] - stream: consolidate non-op algorithm callbacks (Matteo Collina) #65138f7e0c81be4] - stream: cut promise churn in webstreams hot paths (Matteo Collina) #651385edffb544f] - stream: speed up async iteration of Readable (Matteo Collina) #644470876a29bb6] - stream: preserve falsy cancellation reasons (Trivikram Kamat) #64705374f7e214d] - stream: use validateBuffer for BYOB reader view (greenhead) #650466bd15b2ac9] - stream: fix recursive WritableStream abort (Jeong SeokChan) #64825f33dba704d] - string_decoder: decode UTF-8 via StringBytes::Encode (Shelley Vohr) #653246409983a6c] - test: update WPT for WebCryptoAPI to e235e089b4 (Node.js GitHub Bot) #6547801cb4f99a0] - test: convert forEach to for of test-messageevent-brandcheck file (Nachiketa Pathak) #65279359369e24e] - test: use spawnSyncAndAssert in windowsHide test (Junsoo Ha) #653519304dee833] - test: remove test-debugger-run-after-quit-restart as flaky on macOS (Yuya Inoue) #6542430f1a19eec] - test: simplify test-timers-interval-promisified.js (Donghoon Kang) #65322acaf986ad5] - test: add Headers coverage and benchmark (Yagiz Nizipli) #65365b6852e2b96] - test: deflake test-net-listen-ipv6only (sangwook) #64173235a0baf8b] - test: use common/child_process spawnSync helpers (Junsoo Ha) #6537729f010fbb0] - test: fix Linux debug skip in SEA test guard (구현우) #6375133d7b4c6b3] - test: add closed-library assertions for getFunctions and getSymbols (Anshika Jain) #6376924a76e18ec] - test: avoid timer race in event loop delay test (Trivikram Kamat) #64728fdc1e78595] - test: enforce exit code intest-http-server-stale-close(Antoine du Hamel) #65198c644f2e07c] - test: convert test-async-local-storage-bind to async loop (freida-code) #652701d5e5e8f43] - test: replaceforEach()withfor...ofin parallel tests (Phillip Markert) #652729346570fed] - test: convert forEach to for in test-constant.js file (NIxxy25) #652717af0a96090] - test: use for-of instead of forEach (Felix P.) #6526863e6f2edc3] - test: wait for FFI background optimization (Trivikram Kamat) #65300bca3367583] - test: add a simple test forimport deferof a CJS module (Maya Lekova) #6469400b687bc4a] - test: cover ZIP fd lifecycle and add rollback (Philipp Dunkel) #6501631742f2f42] - test: cover ZIP header-confusion and DoS guards (Philipp Dunkel) #6501687ee7bff38] - test: coverrealpathSyncresolving symlinks after a FIFO stat (Hendrik Liebau) #65113fd7e904433] - test: update tests to run with OpenSSL >= 3.0 FIPS mode (Filip Skokan) #64960219495fe2c] - test: account for [EnforceRange] in test-webcrypto-prototype-pollution (Filip Skokan) #65173bf86fab458] - test: add permission fast api test (James M Snell) #65158cc19107e5d] - test: update WPT for WebCryptoAPI to 4c2fd05ed5 (Node.js GitHub Bot) #6515069e4fabb29] - test: update WPT for urlpattern to 4832db4761 (Node.js GitHub Bot) #65151b1aa78a57e] - test: fix hidden error in test-http-server-stale-close.js (Meghan Denny) #5935759d7e22a12] - test: avoid deadlock issue in pipeline http2 tests to fix flakiness (Tim Perry) #650797074ae30fa] - test: allow half-open CONNECT tunnel sockets (Trivikram Kamat) #6497382b2d9c08d] - test: update passphrases to comply with the next OpenSSL FIPS mode (Filip Skokan) #650777f3a42035c] - test: use libuv clock for immediate queue test (Trivikram Kamat) #648897ddd853d8c] - test: increase timeout in probe-failure-hang-during-evaluate (Joyee Cheung) #6471928cad47cef] - test: update WPT for WebCryptoAPI to 82c3d9069c (Node.js GitHub Bot) #6497774a3e91bb7] - test: prefer in-memory databases in sqlite tests (Paul Bouchon) #647017fc8a3ad8c] - test,doc: cover and document multi-byte offset/size in randomFill (kyungrae2002) #648344de7e63883] - test_runner: match dotfiles in default coverage exclude (semimikoh) #6340179c39c217d] - test_runner: print coverage and diagnostic info with dot reporter (mag123c) #61423cce803b174] - test_runner: use run options with isolation="none" (Sylvester Keil) #62269797ef40d23] - test_runner: mock dual-package with conditional exports (Maruthan G) #629431ad7ca310a] - test_runner: restore directory search for --test (Paul Bouchon) #64637400d598b3c] - test_runner: add classname hierarchy for JUnit reporter (mag123c) #602209572a0b15f] - test_runner: fix junit report on empty diagnostic (Lazizbek Ergashev) #65357e3fda695fe] - test_runner: extend tag filter with boolean expression DSL (Chemi Atlow) #630544e06739c7b] - test_runner: do not tag-filter test file wrappers (Chemi Atlow) #65170e73f74738d] - test_runner: fix env option validation (Jihwan) #648652a0b1ec4cc] - tls: throw on invalid ALPNProtocols instead of aborting (Sankalp Thakur) #6507615da4a190b] - tls: fix authorized state on no-cert TLS1.3 client cert resumption (Tim Perry) #646771864175435] - tls: don't trigger SNICallback or OCSPRequest from the TLS lib stack (Tim Perry) #648278f4ee7eda5] - tls: drop hand-rolled TLS client hello parser (Tim Perry) #64827a457631496] - tools: improve commit queue failure comment (Filip Skokan) #6543378175c68f8] - tools: improve nix-changes coverage (Antoine du Hamel) #654036f0c08bf80] - tools: refactorshell.nixpkcs11 integration to its own section (Antoine du Hamel) #6540435b18b4455] - tools: fix max body length handler increate-release-proposal.sh(Antoine du Hamel) #6545588d5f644a2] - tools: bump brace-expansion in/tools/clang-format(dependabot[bot]) #6498441edd2f214] - tools: make env variables consistent in cron jobs (Antoine du Hamel) #651687c09bd5ece] - tools: fix man-page generation on Windows (James Ross) #648861a20d27118] - tools: bump undici from 6.27.0 to 6.28.0 in /tools/doc (dependabot[bot]) #65011ebbe4af869] - tools: fix linter whenpermittedInsecurePackagesis empty (Antoine du Hamel) #6522617d2b067bf] - tools: update BoringSSL pin on v26.x (Filip Skokan) #65483be4e7de04c] - tools: only include fast-tracked and old enough PRs in CQ (Antoine du Hamel) #6519753d52731c9] - tools: fix quote escaping inupdate-nixpkgs-pin.sh(Antoine du Hamel) #6516640b1b18839] - tools: remove skip logic incommit-queue.sh(Antoine du Hamel) #651625506f77924] - tools: bump js-yaml from 4.2.0 to 4.3.1 in /tools/lint-md (dependabot[bot]) #65129fc038a0ef5] - tools: bump js-yaml from 4.2.0 to 4.3.1 in /tools/eslint (dependabot[bot]) #6513010b2c8a873] - tools: fix GITHUB_TOKEN permissions for CQ workflow (Antoine du Hamel) #6519273de450845] - tools: use the read-only token when filtering PRs in CQ (Antoine du Hamel) #6516931c1bcb627] - tools: delay removal ofcommit-queuelabel (Antoine du Hamel) #6510189d3905595] - tools: move ncu config to global for commit queue (Filip Skokan) #65132aa3b598e2e] - tools: prefilter commit queue metadata (Filip Skokan) #643434f2c634258] - tools: lazy-abort failed PR merges in CQ (Antoine du Hamel) #650048657497521] - tools: fixpkcs11-store-testcheck (Antoine du Hamel) #650230e1a99ac24] - tools: add an OpenSSL FIPS build to test-shared.yml (Filip Skokan) #64960b6fa9c1819] - tools: sync mk-ca-bundle.pl with curl (Archkon) #64753f0140d7ebd] - tools: store "default" OpenSSL version inopenssl-matrix.nix(Antoine du Hamel) #649624c8d8afa99] - tools: removetruefrom branch name for auto-update automation (Antoine du Hamel) #649612dd7d4c56f] - tools: add ./tools/nix/pkcs11.nix to nix-changes.yml (Filip Skokan) #64967cf395004ed] - tty: add raw-vt and io raw modes (Samuel Williams) #64140a5e5c7f756] - typings: add signal_wrap internal binding types (Seongeun Lee) #652295219e53dd6] - typings: add diagnostics_channel typings (Seongeun Lee) #65227215223dff1] - typings: add watchdog internal binding types (Seongeun Lee) #65228eb095a94bd] - typings: add internal_only_v8 binding typeis (Donghoon Kang) #650719fc811a0f2] - typings: add credentials internal binding types (Donghoon Kang) #65036f032c22430] - url: skip unused href reuse comparison (Yagiz Nizipli) #653612a64032141] - url: speed up WHATWG URL parsing (Yagiz Nizipli) #65361c4dbe14ec6] - url: speed up URLSearchParams (Yagiz Nizipli) #65363001c37c0a2] - url: bounds-check short Windows file URL paths (Archkon) #647881a63416b1a] - url: handle unparsable serialized URLs in setters (Matteo Collina) #64651cb4b89c018] - util: allow single-line format when break length is infinite (Hamid Reza Ghavami) #64238f644853680] - util: fix OSC 8 hyperlink stripping in stripVTControlCharacters (Dushyant Singh Hada) #64319eb1ebbb39d] - util: fix formatting of functions returned from getters (Richard Gibson) #64839f373dab724] - util: use more primordials incomparisons.js(Ayoub Mabrouk) #611986ca9c1e078] - util: preserve function names without source map names (Hiroki Osame) #651084299cd5897] - (SEMVER-MINOR) util: add non-throwing MIMEType.parse (James M Snell) #649651aafd19813] - zlib: roll back a failed add() directory rewrite (Philipp Dunkel) #65016d29cc0926a] - zlib: let a ZipFile read finish before close() (Philipp Dunkel) #650162bda6db916] - zlib: do not hang archiving a FIFO or device (Philipp Dunkel) #6501655b04957c9] - zlib: reject local/central ZIP header mismatch (Philipp Dunkel) #65016575260d3b4] - zlib: validate central directory record count (Matteo Collina) #650028e848d9be3] - zlib: reject ambiguous ZIP archive ends (Matteo Collina) #65007df48191061] - (SEMVER-MINOR) zlib: add ZipEntry, ZipFile, and ZipBuffer (Philipp Dunkel) #64339ee7bf09090] - zlib: validate pledgedSrcSize for sync zstd (Archkon) #64601