Skip to content

Releases: weichsel/ZIPFoundation

0.9.19

03 Apr 15:48
Compare
Choose a tag to compare

Updated

  • Fixed privacy manifest
  • Fixed deprecation warning in package manifest
  • Fixed resource bundling instruction in the podspec

0.9.18

27 Jan 10:55
Compare
Choose a tag to compare

Added

  • Added ability to enforce symlink containment

Updated

  • Fixed path escape vulnerability
  • Fixed platform requirement warnings
  • Improved error info when encountering permission errors

0.9.17

28 Sep 23:43
Compare
Choose a tag to compare

Added

  • Added visionOS support
  • Added Xcode privacy manifest
  • Added throwing initializers for Archive

Updated

  • Improved symlink handling
  • Improved forwarding of underlying errors

0.9.16

07 Dec 18:09
Compare
Choose a tag to compare

Added

  • Added isCompressed accessor to Entry

Updated

  • Improved README and documentation
  • Fixed deprecation in the random test data generator

0.9.15

20 Sep 22:12
Compare
Choose a tag to compare

Added

  • Added initial support for building for Android

Updated

  • Fixed CRC32 calculation for non-final compression streams
  • Fixed evaluation of CRC32 checksums when using FileManager.unzipItem

0.9.14

19 Sep 10:20
Compare
Choose a tag to compare

Updated

  • Fixed missing extra field data after entry removal

0.9.13

01 Dec 13:27
Compare
Choose a tag to compare

Added

  • Added large file support (ZIP64)

Updated

  • Fixed an UInt16 overflow when calculating the number of entries
  • Fixed entry removal for in-memory archives
  • Fixed a crash when fopen() fails during archive replacement
  • Improved CRC32 calculation performance via zlib (when available)

0.9.12

22 Feb 12:00
Compare
Choose a tag to compare

Added

  • Added check to disallow removal of entries from readonly archives
  • Added guard against API misuse by providing zero byte buffer sizes

Updated

  • Fixed an UInt16 overflow when calculating the end of the central directory record
  • Fixed detection of ZIP version required to extract
  • Fixed missing consumer closure call for zero byte entries
  • Fixed erroneous application of .deflate compression on .symlink and .directory entries
  • Improved detection of .directory entries
  • Improved performance when looking up entries via subscripting
  • Improved consistency of URL format used in the Swift package description

0.9.11

26 Mar 22:24
Compare
Choose a tag to compare

Added

  • Read/Write support for in-memory archives

Updated

  • Fixed a memory safety issue during (de)compression
  • Fixed dangling pointer warnings when serializing ZIP internal structs to Data
  • Fixed missing Swift 5 language version when integrating via CocoaPods
  • Fixed inconsistent usage of the optional preferredEncoding parameter during entry addition
  • Improved documentation for compression settings

0.9.10

02 Dec 18:57
Compare
Choose a tag to compare

Added

  • Optional skipCRC32 parameter to speed up entry reading

Updated

  • Fixed a race condition during archive creation or extraction
  • Fixed an error when trying to add broken symlinks to an archive
  • Fixed an App Store submission issue by updating the product identifier to use reverse DNS notation
  • Improved CRC32 calculation performance
  • Improved entry replacement performance on separate volumes
  • Improved documentation for closure-based writing