Skip to content

Commit 4e9fe1d

Browse files
authored
Revert "Update CRT submodules to latest releases (#1430)" (#1435)
This reverts #1430 (commit ee6d44a). After merging the latest change to the CRT we have seen benchmark runs failing (e.g. https://github.com/awslabs/mountpoint-s3/actions/runs/15206336823/job/42770250949). We are reverting the change while we further investigate the issue. ### Does this change impact existing behavior? No. ### Does this change need a changelog entry? Does it require a version change? Reverts the previous changes. --- 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: Alessandro Passaro <[email protected]>
1 parent a861849 commit 4e9fe1d

File tree

15 files changed

+16
-26
lines changed

15 files changed

+16
-26
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: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,6 @@
55
* Variants of the `GetObjectError` and `S3RequestError` enums now contain a `ClientErrorMetadata` field,
66
which stores information from the S3 response. ([#1411](https://github.com/awslabs/mountpoint-s3/pull/1411))
77

8-
### Other changes
9-
10-
* Update to latest CRT dependencies.
11-
128
## v0.14.1 (May 9, 2025)
139

1410
### Other changes

mountpoint-s3-client/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ 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.12.4" }
11+
mountpoint-s3-crt = { path = "../mountpoint-s3-crt", version = "0.12.3" }
1212

1313
async-trait = "0.1.85"
1414
auto_impl = "1.2.1"

mountpoint-s3-crt-sys/CHANGELOG.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
1-
## Unreleased (v0.14.0)
2-
3-
* Update to latest CRT dependencies.
4-
* Include bindings for the new `s3_buffer_pool` API in `aws-c-s3`. ([#1430](https://github.com/awslabs/mountpoint-s3/pull/1430))
1+
## Unreleased
52

63
## v0.13.1 (May 9, 2025)
74

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.14.0"
4+
version = "0.13.1"
55
edition = "2021"
66
license = "Apache-2.0"
77
repository = "https://github.com/awslabs/mountpoint-s3"

mountpoint-s3-crt-sys/build.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ const CRT_HEADERS: &[&str] = &[
4848
"io/stream.h",
4949
"io/uri.h",
5050
"s3/s3.h",
51-
"s3/s3_buffer_pool.h",
5251
"s3/s3_client.h",
5352
"s3/s3_endpoint_resolver.h",
5453
"sdkutils/endpoints_rule_engine.h",
@@ -60,7 +59,7 @@ const CRT_HEADERS: &[&str] = &[
6059
const PRIVATE_CRT_HEADERS: &[&str] = &[
6160
// To access S3 client stats
6261
"aws-c-s3/include/aws/s3/private/s3_client_impl.h",
63-
"aws-c-s3/include/aws/s3/private/s3_default_buffer_pool.h",
62+
"aws-c-s3/include/aws/s3/private/s3_buffer_pool.h",
6463
];
6564

6665
/// Get the OS name we are compiling to

0 commit comments

Comments
 (0)