Skip to content

Releases: gildas-lormeau/zip.js

v2.6.40

06 Oct 23:54
Compare
Choose a tag to compare

Fixed issue with native Compression streams handling in web workers

v2.6.39

06 Oct 18:36
Compare
Choose a tag to compare

Improved reusing of existing web workers when processing data in parallel

v2.6.37

05 Oct 18:58
Compare
Choose a tag to compare

Fixed uncaught error when aborting data compression/decompression and using web workers with transferable streams (see #370)

v2.6.36

05 Oct 01:07
Compare
Choose a tag to compare
  • Fixed potential (and rare) disk number issue when using SplitZipWriter
  • Updated API documentation

v2.6.34

04 Oct 00:11
Compare
Choose a tag to compare

Added SplitZipWriter class which can be used in order to create split zip files with ZipWriter (cf. test here)

v2.6.33

27 Sep 23:37
Compare
Choose a tag to compare
  • Fixed potential issue related to zip64 format auto-detection when adding concurrently ReadableStream and Reader 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

24 Sep 21:53
Compare
Choose a tag to compare

Improved implementation of the fix from the previous version (2.6.30) for the potential race data condition in Firefox when reading zip files

v2.6.30

23 Sep 21:30
Compare
Choose a tag to compare
  • Added support of split zip files when using ZipReader via the SplitZipReader class (see example here)
  • Fixed potential data race issue in Firefox when unzipping files with the option transferStreams set to true (introduced in version 2.6.24) that could lead to truncated files
  • Make sure build scripts can run in environments where globalThis is undefined (see #254 (comment))

v2.6.29

19 Sep 22:52
Compare
Choose a tag to compare

Added support of CommonJS modules (see "Installation" here: https://gildas-lormeau.github.io/zip.js/)

v2.6.28

17 Sep 16:03
Compare
Choose a tag to compare
  • Added new options when calling configure in order to pass custom CompressionStream and DecompressionStream implementations
  • Reduced the size of built files (~ 2%)
  • Fixed issue when getting navigator.hardwareConcurrency on Deno Deploy