You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
zstd: Fix extra CRC written with multiple Close calls (#1017)
* zstd: Fix extra CRC written with multiple Close calls
* Also check write/flush after close.
Fixes#1016
s2: Fix DecodeConcurrent deadlock on errors (#925)
When DecodeConcurrent encounters an error it can lock up in some cases.
Fix and add fuzz test for stream decoding.
Fixes#920
gzhttp: Allow overriding decompression on transport (#892)
This allows getting compressed data even if `Content-Encoding` is set.
Also allows decompression even if "Accept-Encoding" was not set by this client.
gzhttp: Fix missing content type on Close (#883)
If compression had not yet been triggered in Write, be sure to detect content type on Close.
Fixes#882