Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
# the License.

# Update this on each new release, along with the NEWS.md file.
VERSION := v0.3.6
VERSION := v0.3.7

NAME := fscrypt
PAM_NAME := pam_$(NAME)
Expand Down
23 changes: 23 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,28 @@
# `fscrypt` release notes

## Version 0.3.7

* Upgraded various dependencies, including `golang.org/x/crypto` to resolve the
usual CVEs in it (but as usual, not actually affecting `fscrypt`'s use of it).

* When selecting password hashing parameters, `fscrypt` now takes cgroup
limitations into consideration.

* `fscrypt encrypt` no longer follows trailing symlinks when writing the
recovery instructions.

* `fscrypt unlock` no longer enters an infinite loop when an incorrect key file
is specified using `--key=FILE`, `--quiet` isn't specified, and standard input
is a terminal.

* `fscrypt unlock` no longer enters an infinite loop when an incorrect password
is specified, `--quiet` isn't specified, and standard input isn't a terminal.

* The error message when multiple protectors are available now mentions
`--unlock-with` in addition to `--protector`.

* Documented the udev dependency for `/dev/disk/by-uuid/` links.

## Version 0.3.6

* Upgraded various dependencies, including `golang.org/x/crypto` where the
Expand Down
Loading