-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
5 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,10 @@ | ||
* Removed methods deprecated in v1.9 (Issue #90, PR #92) | ||
* Fixed behavior of `-extractFilesTo:overwrite:error:`, so it shows the progress of each individual file as they extract (Issue #91, PR #94) | ||
* Deprecated the initializers that take a file path instead of an `NSURL` (Issue #90, PR #95) | ||
* Fixed a crasher for unreadable files in `+pathIsAZip:` (Issue #99) | ||
* Deprecated all overloads of `-writeData:...` and `-writeIntoBuffer:...` that take any file properties other than the path, replacing them each with a single call that takes an instance of the new `ZipFileProperties`. This allows for all the default values to be defined in one place, so you can specify only where you want to deviate from the defaults (Issue #89, PR #97) | ||
* Fixed buffer overrun vulnerability when deleting a file in an archive where not every file has a file comment (Issue #106) | ||
* Fixed deallocated pointer use when a file write occurs inside the block of a file write operation, already an error condition (Issue #107) | ||
|
||
In this release: | ||
* Fixed some potential crashing bugs | ||
* Fixed some newer Xcode/Swift warnings | ||
* Fixed some issues caught by running tests with sanitizers (Issues #106 and #107) |