1.48.9
Patch Changes
- #4614
3593c43Thanks @iamomiid! - The Node SDK now sends the raw gzip bytes as the request body instead of wrapping them in aBlob. On Node 24.16 and later, reading aBlobrequest body leaks a nativeBlobReaderthat is never released, so a service callingcapture()andflush()once per request grew by roughly 2.3 KB of heap per event and never gave it back. This completes the work in #4423: switching tonode:zlibremoved the compression-time Blob reads, but the body itself was still a Blob and still got read once per request. Compression behaviour, headers and the wire format are unchanged, and the edge build keeps usingCompressionStream.
(2026-08-24)