-
Notifications
You must be signed in to change notification settings - Fork 2
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
1 parent
b002e0a
commit 86d43db
Showing
3 changed files
with
10 additions
and
5 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,11 +1,16 @@ | ||
# Changelog | ||
|
||
## 0.5.1 | ||
|
||
* Add test to reproduce issue in `impl Stream for Entries` causing filename truncation by @charliermarsh in https://github.com/astral-sh/tokio-tar/pull/41 | ||
* Avoid truncation during pending reads by @charliermarsh in https://github.com/astral-sh/tokio-tar/pull/40 | ||
|
||
## 0.5.0 | ||
|
||
- Setting `preserve_permissions` to `false` will avoid setting _any_ permissions on extracted files. | ||
* Setting `preserve_permissions` to `false` will avoid setting _any_ permissions on extracted files. | ||
In [`alexcrichton/tar-rs`](https://github.com/alexcrichton/tar-rs), setting `preserve_permissions` | ||
to `false` will still set read, write, and execute permissions on extracted files, but will avoid | ||
setting extended permissions (e.g., `setuid`, `setgid`, and `sticky` bits). | ||
- Avoid creating directories outside the unpack target (see: [`alexcrichton/tar-rs#259`](https://github.com/alexcrichton/tar-rs/pull/259)). | ||
- Added `unpack_in_raw` which memoizes the set of validated paths (and assumes a pre-canonicalized) | ||
* Avoid creating directories outside the unpack target (see: [`alexcrichton/tar-rs#259`](https://github.com/alexcrichton/tar-rs/pull/259)). | ||
* Added `unpack_in_raw` which memoizes the set of validated paths (and assumes a pre-canonicalized) | ||
unpack target to avoid redundant filesystem operations. |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,6 +1,6 @@ | ||
[package] | ||
name = "astral-tokio-tar" | ||
version = "0.5.0" | ||
version = "0.5.1" | ||
authors = [ | ||
"Alex Crichton <[email protected]>", | ||
"dignifiedquire <[email protected]>", | ||
|