- Fixed broken UMD build
- Fixed edge-case causing skipped data during streaming compression
- Fixed bug in GZIP streaming on member boundary
- Improved streaming performance on inconsistent chunk sizes
- Improved
unzip
performance on undercompressed archives - Added flushing support into streaming API
- Added backpressure support into async streaming API
- Use new
ondrain
handler andqueuedSize
- Use new
- Fixed reallocating on pre-supplied buffer in
inflateSync
andunzlibSync
- Minor documentation fixes
- BREAKING: synchronous decompression functions now take an options object rather than an output buffer as a second parameter
inflateSync(compressed, outBuf)
is nowinflateSync(compressed, { out: outBuf })
- Support dictionaries in compression and decompression
- Support multi-member files in GZIP streaming decompression
- Dramatically improved streaming performance
- Fixed missing error on certain malformed GZIP files
- Fix folder creation for certain operating system
- Create 0-length "files" for each directory specified with "object" syntax"
- Support empty folders
- Add options for folders
- Fix minification in SWC
- Remove instanceof, no-whitespace assumptions in async functions
- Fixed TypeScript typing for errors when using
strictNullChecks
- Fixed failure to compress files above 64kB with
{ level: 0 }
- Fixed AMD module definition in UMD build
- Removed requirement for
setTimeout
- Added support for unzip file filters (thanks to @manucorporat: #67)
- Fixed streaming gunzip and unzlib bug causing corruption
- Improved errors
- Now errors are error objects instead of strings
- Check the error code to apply custom logic based on error type
- Made async operations always call callbacks asynchronously
- Fixed bug that caused errors to not appear in asynchronous operations in browsers
- Fixed async operations on Node.js with native ESM
- Fixed streams not recognizing final chunk
- Fixed streaming UTF-8 decoder bug
- Made streaming inflate consume all data possible
- Optimized use of values near 32-bit boundary
- Patch exports of async functions
- Fix streaming unzip
- Replace Adler-32 implementation (used in Zlib compression) with one more optimized for V8
- Advice from @SheetJSDev
- Add support for extra fields, file comments in ZIP files
- Work on Rust version
- Revamped streaming unzip for compatibility and performance improvements
- Fixed streaming data bugs
- Fixed inflation errors
- Planned new tests
- General bugfixes
- Add streaming zip, unzip
- Fix import issues with certain environments
- If you had problems with
worker_threads
being included in your bundle, try updating!
- If you had problems with
- Support strict Content Security Policy
- Remove
new Function
- Remove
- Fix data streaming bugs
- Zip64 support
- Still not possible to have above 4GB files
- Files up to 4GB supported
- Hey, that's better than even Node.js
zlib
!
- Hey, that's better than even Node.js
- Fix ZIP failure bug
- Make ZIP options work better
- Improve docs
- Fix async inflate failure
- Work on Rust version
- Fix docs
- Fixed issue with unzipping
- Patched streaming compression bugs
- Added demo page
- Allowed true ESM imports
- Fixed rare overflow bug causing corruption
- Added async stream termination
- Added UMD bundle
- Added support for asynchronous and synchronous streaming
- Reduced bundle size by autogenerating worker code, even in minified environments
- Error detection rather than hanging
- Improved performance
- Improved Zlib autodetection
- Fixed Node Worker
- Fixed ZIP bug
- Added support for ZIP files (parallelized)
- Added ability to terminate running asynchronous operations
- Rewrote API: added support for asynchronous (Worker) compression/decompression, fixed critical bug involving fixed Huffman trees
- Created, works on basic input