diff --git a/Cargo.lock b/Cargo.lock index 17c3aec8f..35a2f760c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1895,7 +1895,7 @@ dependencies = [ [[package]] name = "mountpoint-s3" -version = "1.3.1" +version = "1.3.2" dependencies = [ "anyhow", "assert_cmd", diff --git a/mountpoint-s3/CHANGELOG.md b/mountpoint-s3/CHANGELOG.md index 469282af2..53de113b8 100644 --- a/mountpoint-s3/CHANGELOG.md +++ b/mountpoint-s3/CHANGELOG.md @@ -1,5 +1,25 @@ ## Unreleased +## v1.3.2 (January 11, 2024) + +### Breaking changes +* No breaking changes. + +### Other changes +* Log messages now include file names and S3 keys more consistently. + ([#665](https://github.com/awslabs/mountpoint-s3/pull/665)) +* Successful mount message is now output to stdout for both foreground and background mode. + ([#668](https://github.com/awslabs/mountpoint-s3/pull/668)) +* Added new metric tracking contiguous reads. + This new metric may be used to help understand how much data is being read successfully using prefetching + before needing to discard prefetched progress when seeking around the file. + ([#629](https://github.com/awslabs/mountpoint-s3/pull/629)) +* Fix a race condition where FUSE `read` operations may have completed and subsequently sent back to the Kernel + while locks were still being held on a file handle. + If a FUSE `release` operation was executed while the file handle was still held by `read`, + this would result in the file handle never being deallocated. + ([#691](https://github.com/awslabs/mountpoint-s3/pull/691)) + ## v1.3.1 (November 30, 2023) ### Breaking changes diff --git a/mountpoint-s3/Cargo.toml b/mountpoint-s3/Cargo.toml index db7ab611f..dc31b6088 100644 --- a/mountpoint-s3/Cargo.toml +++ b/mountpoint-s3/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mountpoint-s3" -version = "1.3.1" +version = "1.3.2" edition = "2021" license = "Apache-2.0" publish = false