Skip to content

Commit

Permalink
Bump version to v0.5.1 (#42)
Browse files Browse the repository at this point in the history
  • Loading branch information
charliermarsh authored Feb 9, 2025
1 parent b002e0a commit 86d43db
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
11 changes: 8 additions & 3 deletions CHANGELOG.md
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.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
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]>",
Expand Down

0 comments on commit 86d43db

Please sign in to comment.