Skip to content

Commit 481f218

Browse files
chore(aws-smithy-http-client): update s2n-tls crates version (#4483)
## Motivation and Context Update s2n-tls versions in AWS SDK. ## Description s2n-tls-hyper bumps its minor version to 0.1.0. AWS SDK should use the latest version of that, and also the latest version for s2n-tls and s2n-tls-tokio crates. ## Testing Your CI should test it. ## Checklist <!--- If a checkbox below is not applicable, then please DELETE it rather than leaving it unchecked --> - [ ] For changes to the smithy-rs codegen or runtime crates, I have created a changelog entry Markdown file in the `.changelog` directory, specifying "client," "server," or both in the `applies_to` key. - [ ] For changes to the AWS SDK, generated SDK code, or SDK runtime crates, I have created a changelog entry Markdown file in the `.changelog` directory, specifying "aws-sdk-rust" in the `applies_to` key. ---- _By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice._ --------- Co-authored-by: ysaito1001 <awsaito@amazon.com>
1 parent 17569c0 commit 481f218

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

rust-runtime/Cargo.lock

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

rust-runtime/aws-smithy-http-client/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "aws-smithy-http-client"
33
authors = ["AWS Rust SDK Team <aws-sdk-rust@amazon.com>"]
44
description = "HTTP client abstractions for generated smithy clients"
5-
version = "1.1.5"
5+
version = "1.1.6"
66
license = "Apache-2.0"
77
edition = "2021"
88
repository = "https://github.com/smithy-lang/smithy-rs"
@@ -91,9 +91,9 @@ hyper-rustls = { version = "0.27", features = ["http2", "http1", "native-tokio",
9191
rustls = { version = "0.23.31", default-features = false, optional = true }
9292
tokio-rustls = { version = "0.26.2", default-features = false, optional = true}
9393
# TODO(hyper1): add a way to enable the fips feature flag in s2n-tls
94-
s2n-tls-hyper = { version = "0.0.16", optional = true }
95-
s2n-tls = { version = "0.3.24", optional = true }
96-
s2n-tls-tokio = { version = "0.3.24", optional = true}
94+
s2n-tls-hyper = { version = "0.1.0", optional = true }
95+
s2n-tls = { version = "0.3.33", optional = true }
96+
s2n-tls-tokio = { version = "0.3.33", optional = true}
9797
tower = { version = "0.5.2", optional = true }
9898
rustls-pki-types = { version = "1.12.0", features = ["std"], optional = true }
9999
rustls-native-certs = { version = "0.8.1", optional = true }

0 commit comments

Comments
 (0)