Skip to content

Releases: gildas-lormeau/zip.js

v2.7.60

31 Mar 00:09
Compare
Choose a tag to compare

v2.7.59

29 Mar 23:20
Compare
Choose a tag to compare
  • Added legacy-5.6 entry point in the package.json file in order to support TypeScript < 5.7 (see #563 and #549)
  • Fixed score on JSR (see #562)
  • Fixed ESLint and Deno lint warnings
  • Updated dev dependencies

v2.7.58

28 Mar 18:20
Compare
Choose a tag to compare
  • Added ArrayBuffer type parameter to Uint8Array by @UnsungHero97 in the type definition file (see #549)
  • Added exception "Writer not initialized" when using Writer classes implementing Writer#writeUint8Array if Writer#init() has not been previously called (see #560)
  • Fixed infinite loop when using readable.getReader() from Reader classes (see #559)
  • Added more info about encryptionStrengthin the documentation (see #558)
  • Updated development dependencies
  • Added JSR integration via an Action

v2.7.57

31 Jan 00:21
Compare
Choose a tag to compare
  • Changed the external file attributes format to UNIX (more info here part 4.4.2). As a consequence, the msDosCompatible option is now set to false by default.
  • Added the executable option to indicate an entry is a UNIX executable file when creating zip files

v2.7.56

30 Jan 18:23
Compare
Choose a tag to compare

v2.7.54

05 Dec 15:16
Compare
Choose a tag to compare
  • Setting compressionMethod to 0 will create valid (uncompressed) entries when using ZipWriter
  • Removed some useless async function calls
  • Updated dev dependencies

v2.7.53

29 Oct 00:02
Compare
Choose a tag to compare
  • Fixed type of Entry#extraField by @xc2 in #535
  • Updated dev dependencies

New Contributors

  • @xc2 made their first contribution in #535

v2.7.52

27 Aug 20:47
Compare
Choose a tag to compare
  • Added option compressionMethod in ZipWriter for handling custom compression methods (e.g. zstd) when setting the option passThrough to true
  • Fixed issue with Uint8Array size in ZipReader when setting passThrough to true and using a Uint8Writer class to get the uncompressed data
  • Fixed optional checkPasswordOnly property in the type definitions (index.d.ts)

v2.7.51

21 Aug 20:51
Compare
Choose a tag to compare
  • Fixed issue when passing passThrough: true option in the import* methods of the FS API with AES-encrypted files where the encryption strength is not set to the default value (i.e. 3)

v2.7.50

21 Aug 14:44
Compare
Choose a tag to compare
  • Added the new option passThrough in ZipReader, ZipWriter, and ZipDirectoryEntry#import methods. This allows reading/writing directly the raw data of zip entries without processing it (i.e. compressing or/and encrypting data)
  • Added the new option offset in ZipWriter. This allows setting the offset of the first entry in the file to a value > 0. This can be useful when creating zip files with prepended data
  • Completed the implementation of the bitFlag property in ZipWriter. It will now take into account the level of compression and update the bit flag value accordingly.
  • Updated dev dependencies