Releases: gildas-lormeau/zip.js
Releases · gildas-lormeau/zip.js
v2.6.40
Fixed issue with native Compression streams handling in web workers
v2.6.39
Improved reusing of existing web workers when processing data in parallel
v2.6.37
v2.6.36
- Fixed potential (and rare) disk number issue when using
SplitZipWriter
- Updated API documentation
v2.6.34
v2.6.33
- Fixed potential issue related to zip64 format auto-detection when adding concurrently
ReadableStream
andReader
instances simultaneously in a zip file weighting more than 4GB - Fixed unnecessary data retrieval (approx. 30 bytes) when extracting a zip entry
- Added rollup-es5.config.js and rollup-es5.config.dev.js scripts in order to build zip.js for older engines (see instructions in the header comment)
v2.6.32
v2.6.30
- Added support of split zip files when using
ZipReader
via theSplitZipReader
class (see example here) - Fixed potential data race issue in Firefox when unzipping files with the option
transferStreams
set totrue
(introduced in version 2.6.24) that could lead to truncated files - Make sure build scripts can run in environments where
globalThis
isundefined
(see #254 (comment))
v2.6.29
Added support of CommonJS modules (see "Installation" here: https://gildas-lormeau.github.io/zip.js/)
v2.6.28
- Added new options when calling
configure
in order to pass customCompressionStream
andDecompressionStream
implementations - Reduced the size of built files (~ 2%)
- Fixed issue when getting
navigator.hardwareConcurrency
on Deno Deploy