Skip to content

Commit 3e65af8

Browse files
Release v1.20.0 (#1604)
Update `CHANGELOG.md` files of the `fs` and `client` crates to prepare for release. ### Does this change impact existing behavior? No. ### Does this change need a changelog entry? Does it require a version change? See above. --- By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license and I agree to the terms of the [Developer Certificate of Origin (DCO)](https://developercertificate.org/). --------- Signed-off-by: Renan Magagnin <renanmag@amazon.co.uk>
1 parent 8862a35 commit 3e65af8

File tree

9 files changed

+24
-13
lines changed

9 files changed

+24
-13
lines changed

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

mountpoint-s3-client/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
## Unreleased
22

3+
## v0.19.1 (September 15, 2025)
4+
5+
* Update `tracing-subscriber` from `0.3.19` to `0.3.20`. ([#1590](https://github.com/awslabs/mountpoint-s3/pull/1590))
6+
37
## v0.19.0 (July 28, 2025)
48

59
### Breaking changes

mountpoint-s3-client/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[package]
22
name = "mountpoint-s3-client"
33
# See `/doc/PUBLISHING_CRATES.md` to read how to publish new versions.
4-
version = "0.19.0"
4+
version = "0.19.1"
55
edition = "2024"
66
license = "Apache-2.0"
77
repository = "https://github.com/awslabs/mountpoint-s3"
88
description = "High-performance Amazon S3 client for Mountpoint for Amazon S3."
99

1010
[dependencies]
11-
mountpoint-s3-crt = { path = "../mountpoint-s3-crt", version = "0.13.0" }
11+
mountpoint-s3-crt = { path = "../mountpoint-s3-crt", version = "0.13.1" }
1212

1313
async-trait = "0.1.88"
1414
auto_impl = "1.3.0"

mountpoint-s3-crt/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
## Unreleased
22

3+
## v0.13.1 (September 15, 2025)
4+
5+
* Update `tracing-subscriber` from `0.3.19` to `0.3.20`. ([#1590](https://github.com/awslabs/mountpoint-s3/pull/1590))
6+
37
## v0.13.0 (July 23, 2025)
48

59
* Upgrade to Rust 2024. ([#1498](https://github.com/awslabs/mountpoint-s3/pull/1498))

mountpoint-s3-crt/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "mountpoint-s3-crt"
33
# See `/doc/PUBLISHING_CRATES.md` to read how to publish new versions.
4-
version = "0.13.0"
4+
version = "0.13.1"
55
edition = "2024"
66
license = "Apache-2.0"
77
repository = "https://github.com/awslabs/mountpoint-s3"

mountpoint-s3-fs/CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
1-
## Unreleased (v0.7.1)
1+
## Unreleased
2+
3+
## v0.7.1 (September 15, 2025)
24

35
* Fix race condition that could cause Mountpoint to panic on unlink. ([#1596](https://github.com/awslabs/mountpoint-s3/pull/1596))
46
* Downgrade ioctl operation logging level from WARN to DEBUG to reduce log noise. ([#1598](https://github.com/awslabs/mountpoint-s3/pull/1598))
7+
* Introduce experimental support for publishing OTEL metrics to an endpoint, under the `otlp_integration` feature. ([1552](https://github.com/awslabs/mountpoint-s3/pull/1552) and [1550](https://github.com/awslabs/mountpoint-s3/pull/1550))
8+
* Add experimental environment variable `UNSTABLE_CRT_EVENTLOOP_THREADS` to configure EventLoopGroup thread count. ([#1579](https://github.com/awslabs/mountpoint-s3/pull/1579))
9+
* Replace `httpmock` dependency with `wiremock` which is more frequently updated. ([#1589](https://github.com/awslabs/mountpoint-s3/pull/1589))
510

611
## v0.7.0 (July 28, 2025)
712

mountpoint-s3-fs/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ description = "Mountpoint S3 main library"
99

1010
[dependencies]
1111
mountpoint-s3-fuser = { path = "../mountpoint-s3-fuser", version = "0.1.0", features = ["abi-7-28"] }
12-
mountpoint-s3-client = { path = "../mountpoint-s3-client", version = "0.19.0" }
12+
mountpoint-s3-client = { path = "../mountpoint-s3-client", version = "0.19.1" }
1313

1414
anyhow = { version = "1.0.98", features = ["backtrace"] }
1515
async-channel = "2.3.1"

mountpoint-s3/CHANGELOG.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,13 @@
1-
## Unreleased (v1.20.0)
1+
## Unreleased
2+
3+
## v1.20.0 (Sep 12, 2025)
24

35
* Adopt a unified memory pool to reduce overall memory usage. ([#1511](https://github.com/awslabs/mountpoint-s3/pull/1511))
46
* Log messages now include the thread ID that logged the message, like "ThreadId(01)", after the level. ([#1460](https://github.com/awslabs/mountpoint-s3/pull/1460))
57
* Fix issue preventing incremental upload to handle very large write part sizes. ([#1538](https://github.com/awslabs/mountpoint-s3/pull/1538))
68
* Fix race condition that could cause Mountpoint to panic on unlink. ([#1596](https://github.com/awslabs/mountpoint-s3/pull/1596))
79
* Downgrade ioctl operation logging level from WARN to DEBUG to reduce log noise. ([#1598](https://github.com/awslabs/mountpoint-s3/pull/1598))
810

9-
### Other changes
10-
11-
* Fix compatibility issue with S3-like services with `mountpoint-s3` benchmark scripts. They now use path-style addressing when `S3_ENDPOINT_URL` is set. ([#1560](https://github.com/awslabs/mountpoint-s3/pull/1560))
12-
1311
## v1.19.0 (Jun 19, 2025)
1412

1513
* Add support for renaming files using the RenameObject API when mounting directory buckets in S3 Express One Zone. ([#1468](https://github.com/awslabs/mountpoint-s3/pull/1468))

mountpoint-s3/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ default-run = "mount-s3"
88

99
[dependencies]
1010
mountpoint-s3-fs = { path = "../mountpoint-s3-fs", version = "0.7.1" }
11-
mountpoint-s3-client = { path = "../mountpoint-s3-client", version = "0.19.0" }
11+
mountpoint-s3-client = { path = "../mountpoint-s3-client", version = "0.19.1" }
1212

1313
anyhow = { version = "1.0.98", features = ["backtrace"] }
1414
clap = { version = "4.5.40", features = ["derive"] }

0 commit comments

Comments
 (0)