Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 975 Bytes

CHANGELOG.md

File metadata and controls

16 lines (12 loc) · 975 Bytes

Changelog

0.5.1

  • Add test to reproduce issue in impl Stream for Entries causing filename truncation by @charliermarsh in #41
  • Avoid truncation during pending reads by @charliermarsh in #40

0.5.0

  • Setting preserve_permissions to false will avoid setting any permissions on extracted files. In 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).
  • Added unpack_in_raw which memoizes the set of validated paths (and assumes a pre-canonicalized) unpack target to avoid redundant filesystem operations.