Skip to content

Commit e7eaeb6

Browse files
Update changelogs for v1.22.2 release (#1794)
Update changelogs for v1.22.2 release. ### Does this change impact existing behavior? No ### Does this change need a changelog entry? Does it require a version change? Yes. --- 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: Tadiwa Magwenzi <tadiwaom@amazon.com> Signed-off-by: Tadiwa Magwenzi <87494144+tadiwa-aizen@users.noreply.github.com> Co-authored-by: Alessandro Passaro <alessandro.passaro@gmail.com>
1 parent 1be83cb commit e7eaeb6

File tree

11 files changed

+36
-18
lines changed

11 files changed

+36
-18
lines changed

Cargo.lock

Lines changed: 5 additions & 5 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 & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
## Unreleased
22

3+
## v0.19.8 (March 20, 2026)
4+
5+
* Update to latest CRT dependencies.
6+
37
## v0.19.7 (March 9, 2026)
48

59
* Add `'static + Send` bounds to `MemoryPool` trait, and add `get_buffer_async` method to `MemoryPool`. ([#1768](https://github.com/awslabs/mountpoint-s3/pull/1768))
610
* Upgrade cargo dependencies.
7-
* Update to latest CRT dependencies.
811

912
## v0.19.6 (January 22, 2026)
1013

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.7"
4+
version = "0.19.8"
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.7" }
11+
mountpoint-s3-crt = { path = "../mountpoint-s3-crt", version = "0.13.8" }
1212

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

mountpoint-s3-crt-sys/CHANGELOG.md

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

3+
## v0.16.2 (March 20, 2026)
4+
5+
* Update to latest CRT dependencies.
6+
37
## v0.16.1 (March 9, 2026)
48

59
* Upgrade cargo dependencies.
6-
* Update to latest CRT dependencies.
710

811
## v0.16.0 (January 22, 2026)
912

mountpoint-s3-crt-sys/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-sys"
33
# See `/doc/PUBLISHING_CRATES.md` to read how to publish new versions.
4-
version = "0.16.1"
4+
version = "0.16.2"
55
edition = "2024"
66
license = "Apache-2.0"
77
repository = "https://github.com/awslabs/mountpoint-s3"

mountpoint-s3-crt/CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
## Unreleased
22

3+
## v0.13.8 (March 20, 2026)
4+
5+
* Update to latest CRT dependencies.
6+
37
## v0.13.7 (March 9, 2026)
48

59
* Add `'static + Send` bounds to `MemoryPool` trait, and add `get_buffer_async` method to `MemoryPool`. ([#1768](https://github.com/awslabs/mountpoint-s3/pull/1768))
610
* Upgrade cargo dependencies.
7-
* Update to latest CRT dependencies.
811

912
## v0.13.6 (January 22, 2026)
1013

mountpoint-s3-crt/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-crt"
33
# See `/doc/PUBLISHING_CRATES.md` to read how to publish new versions.
4-
version = "0.13.7"
4+
version = "0.13.8"
55
edition = "2024"
66
license = "Apache-2.0"
77
repository = "https://github.com/awslabs/mountpoint-s3"
88
description = "Rust interface to the AWS Common Runtime for Mountpoint for Amazon S3."
99

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

1313
futures = "0.3.32"
1414
libc = "0.2.182"

mountpoint-s3-fs/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.9.2 (March 20, 2026)
4+
5+
* Update to latest CRT dependencies.
6+
37
## v0.9.1 (March 9, 2026)
48

59
* Fix a race condition where concurrent operations after closing a truncated file could result in I/O errors on subsequent reads. The issue was introduced in `mountpoint-s3-fs` v0.9.0. ([#1781](https://github.com/awslabs/mountpoint-s3/pull/1781))

mountpoint-s3-fs/Cargo.toml

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

1010
[dependencies]
1111
mountpoint-s3-fuser = { path = "../mountpoint-s3-fuser", version = "0.1.1", features = ["abi-7-28", "libfuse"] }
12-
mountpoint-s3-client = { path = "../mountpoint-s3-client", version = "0.19.7" }
12+
mountpoint-s3-client = { path = "../mountpoint-s3-client", version = "0.19.8" }
1313

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

mountpoint-s3/CHANGELOG.md

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

3+
## v1.22.2 (Mar 20, 2026)
4+
5+
* Signing key rotation: We have updated the GnuPG key used to sign new Mountpoint for Amazon S3 releases. If you are following the [Verifying the signature of the Mountpoint for Amazon S3 package](https://github.com/awslabs/mountpoint-s3/blob/main/doc/INSTALL.md#optional-verifying-the-signature-of-the-mountpoint-for-amazon-s3-package) instructions, make sure to use the latest version of the KEYS file.
6+
* Update the internal S3 client to use the latest release of the AWS Common Runtime (CRT) libraries. ([#1778](https://github.com/awslabs/mountpoint-s3/pull/1778))
7+
38
## v1.22.1 (March 9, 2026)
49

510
* Fix a race condition where concurrent operations after closing a truncated file could result in I/O errors on subsequent reads. The issue was introduced in v1.22.0. ([#1781](https://github.com/awslabs/mountpoint-s3/pull/1781))

0 commit comments

Comments
 (0)