HTTP gains arbitrary informational responses (
03f27fe)
response.writeInformation() now lets servers send any HTTP/1.1 1xx status code, not just the fixed helpers like writeContinue() or writeEarlyHints(). The same capability was added to the HTTP/2 compat layer, giving userland a cleaner way to emit progress-style responses before the final status.
Debugger probes now report real hit locations (
ee11c35)
Probe reporting was bumped to JSON schema v2 and now distinguishes the user's requested target from the actual paused location. That matters when a probe suffix matches multiple scripts or when the debugger has to adjust to the first executable column; the output now tells you exactly where execution stopped.
Stream iter adapters got two correctness fixes (
2d6cbea,
c0327d3,
6482073,
be7ded1)
fromWritable() now validates options before consulting the cache, caches per backpressure policy, and uncorks properly if chunk conversion throws during writev(). toReadableSync() also preserves partially drained batches across backpressure, and PushQueue avoids an unnecessary array allocation for the single-item case.
QUIC behavior was tightened for backpressure and ALPN errors (
e9c49ea,
f190a04)
QUIC writes now treat any available capacity as writable instead of rejecting chunks that merely exceed the remaining window, which fixes a stall with variable-sized chunks. ALPN mismatches now send the correct OpenSSL fatal alert, making handshake failures more precise.
HTTP/2 early-hints validation is stricter (
274d799)
Non-link headers passed to writeEarlyHints() are now validated before being forwarded, instead of letting invalid names or values fail deeper in the stack. This brings the compat layer in line with HTTP/1.1 behavior and gives clearer errors.
Test runner context tracking fixed (
5750802,
fa1e1f4)
Two test runner bugs were corrected: hook context now resolves properly, and diagnostics-channel context tracking no longer loses binding state. These are internal correctness fixes that improve test isolation and observability.
SQLite and simdjson deps updated (
a91d859,
c8206c8)
Vendored SQLite and simdjson were refreshed to newer upstream releases. These are dependency-sync changes with the usual mix of bug fixes and maintenance updates.

