Skip to content

Commit

Permalink
Release v1.3.2 (#697)
Browse files Browse the repository at this point in the history
* Release v1.3.2

Signed-off-by: Daniel Carl Jones <djonesoa@amazon.com>

* Remove line

Signed-off-by: Daniel Carl Jones <djonesoa@amazon.com>

---------

Signed-off-by: Daniel Carl Jones <djonesoa@amazon.com>
  • Loading branch information
dannycjones committed Jan 11, 2024
1 parent b9ca6b3 commit 7dcaee0
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 2 deletions.
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.

20 changes: 20 additions & 0 deletions mountpoint-s3/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion mountpoint-s3/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mountpoint-s3"
version = "1.3.1"
version = "1.3.2"
edition = "2021"
license = "Apache-2.0"
publish = false
Expand Down

0 comments on commit 7dcaee0

Please sign in to comment.