-
- Downloads
change default HTTPS client to hyper1 (#4040)
## Motivation and Context <!--- Why is this change required? What problem does it solve? --> <!--- If it fixes an open issue, please link to the issue here --> * https://github.com/smithy-lang/smithy-rs/issues/3710 * https://github.com/smithy-lang/smithy-rs/issues/1925 * https://github.com/awslabs/aws-sdk-rust/issues/977 ## Description Updates the default HTTPS client to be based off hyper 1.x, rustls, and aws-lc. See the GitHub discussion: https://github.com/awslabs/aws-sdk-rust/discussions/1257 This PR is a rollup of previously reviewed PRs: * Refactor the runtime structure and consolidate HTTP client implementation(s): [smithy-rs#3866](https://github.com/smithy-lang/smithy-rs/pull/3866) * Migrate HTTP test utils: [smithy-rs#3888](https://github.com/smithy-lang/smithy-rs/pull/3888) * Update runtime to use new test utils: [smithy-rs#3898](https://github.com/smithy-lang/smithy-rs/pull/3898) * Backport connection poisoning: [smithy-rs#3795](https://github.com/smithy-lang/smithy-rs/pull/3795) * Deprecate HTTP 02x presign APIs: [smithy-rs#3823](https://github.com/smithy-lang/smithy-rs/pull/3823) * Enable hyper1 as default client: [smithy-rs#]() * Enable hyper1 behind BMV:[smithy-rs#3973](https://github.com/smithy-lang/smithy-rs/pull/3973) * s2n-tls provider (by Sam): [smithy-rs#3965](https://github.com/smithy-lang/smithy-rs/pull/3965) * custom TLS config: [smithy-rs#4032](https://github.com/smithy-lang/smithy-rs/pull/4032 ) ## Testing <!--- Please describe in detail how you tested your changes --> <!--- Include details of your testing environment, and the tests you ran to --> <!--- see how your change affects other areas of the code, etc. --> ## Checklist <!--- If a checkbox below is not applicable, then please DELETE it rather than leaving it unchecked --> - [x] 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. - [x] 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:Sam Clark <3758302+goatgoose@users.noreply.github.com> Co-authored-by:
Landon James <lnj@amazon.com>
Showing
- .changelog/1741027916.md 15 additions, 0 deletions.changelog/1741027916.md
- .github/workflows/ci.yml 10 additions, 10 deletions.github/workflows/ci.yml
- aws/rust-runtime/Cargo.lock 150 additions, 109 deletionsaws/rust-runtime/Cargo.lock
- aws/rust-runtime/aws-config/Cargo.lock 427 additions, 140 deletionsaws/rust-runtime/aws-config/Cargo.lock
- aws/rust-runtime/aws-config/Cargo.toml 17 additions, 11 deletionsaws/rust-runtime/aws-config/Cargo.toml
- aws/rust-runtime/aws-config/src/default_provider/credentials.rs 4 additions, 6 deletions...st-runtime/aws-config/src/default_provider/credentials.rs
- aws/rust-runtime/aws-config/src/ecs.rs 2 additions, 2 deletionsaws/rust-runtime/aws-config/src/ecs.rs
- aws/rust-runtime/aws-config/src/http_credential_provider.rs 1 addition, 1 deletionaws/rust-runtime/aws-config/src/http_credential_provider.rs
- aws/rust-runtime/aws-config/src/imds/client.rs 2 additions, 4 deletionsaws/rust-runtime/aws-config/src/imds/client.rs
- aws/rust-runtime/aws-config/src/imds/credentials.rs 12 additions, 9 deletionsaws/rust-runtime/aws-config/src/imds/credentials.rs
- aws/rust-runtime/aws-config/src/imds/region.rs 1 addition, 1 deletionaws/rust-runtime/aws-config/src/imds/region.rs
- aws/rust-runtime/aws-config/src/lib.rs 5 additions, 29 deletionsaws/rust-runtime/aws-config/src/lib.rs
- aws/rust-runtime/aws-config/src/meta/credentials/chain.rs 2 additions, 2 deletionsaws/rust-runtime/aws-config/src/meta/credentials/chain.rs
- aws/rust-runtime/aws-config/src/profile/credentials.rs 1 addition, 1 deletionaws/rust-runtime/aws-config/src/profile/credentials.rs
- aws/rust-runtime/aws-config/src/provider_config.rs 1 addition, 1 deletionaws/rust-runtime/aws-config/src/provider_config.rs
- aws/rust-runtime/aws-config/src/sso/token.rs 2 additions, 3 deletionsaws/rust-runtime/aws-config/src/sso/token.rs
- aws/rust-runtime/aws-config/src/sts/assume_role.rs 1 addition, 3 deletionsaws/rust-runtime/aws-config/src/sts/assume_role.rs
- aws/rust-runtime/aws-config/src/test_case.rs 4 additions, 5 deletionsaws/rust-runtime/aws-config/src/test_case.rs
- aws/rust-runtime/aws-credential-types/Cargo.toml 2 additions, 2 deletionsaws/rust-runtime/aws-credential-types/Cargo.toml
- aws/rust-runtime/aws-inlineable/Cargo.toml 4 additions, 4 deletionsaws/rust-runtime/aws-inlineable/Cargo.toml
Loading
Please register or sign in to comment