diff --git a/CHANGELOG.md b/CHANGELOG.md index 865943d3..f8bc2951 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,27 @@ # Changelog +## [1.1.4](https://github.com/zip-rs/zip2/compare/v1.1.3...v1.1.4) - 2024-05-04 + +### 🐛 Bug Fixes +- Build was failing with bzip2 enabled +- use is_dir in more places where Windows paths might be handled incorrectly + +### ⚡ Performance +- Quick filter for paths that contain "/../" or "/./" or start with "./" or "../" +- Fast handling for separator-free paths +- Speed up logic if main separator isn't '/' +- Drop `normalized_components` slightly sooner when not using it +- Speed up `path_to_string` in cases where the path is already in the proper format + +### ⚙️ Miscellaneous Tasks +- Refactor: can short-circuit handling of paths that start with MAIN_SEPARATOR, no matter what MAIN_SEPARATOR is +- Bug fix: non-canonical path detection when MAIN_SEPARATOR is not slash or occurs twice in a row +- Bug fix: must recreate if . or .. is a path element +- Bug fix + +### ◀️ Revert +- [#58](https://github.com/zip-rs/zip2/pull/58) (partial): `bzip2-rs` can't replace `bzip2` because it's decompress-only + ## [1.1.3](https://github.com/zip-rs/zip2/compare/v1.1.2...v1.1.3) - 2024-04-30 ### 🐛 Bug Fixes