Skip to content

v0.33.0 (December 15th, 2021)

Pre-release
Pre-release
Compare
Choose a tag to compare
@rcoh rcoh released this 15 Dec 14:25
· 2378 commits to main since this release
64ccdcc

Breaking Changes:

  • ⚠ (smithy-rs#930) Runtime crates no longer have default features. You must now specify the features that you want when you add a dependency to your Cargo.toml.

    Upgrade guide

    before after
    aws-smithy-async = "VERSION" aws-smithy-async = { version = "VERSION", features = ["rt-tokio"] }
    aws-smithy-client = "VERSION" aws-smithy-client = { version = "VERSION", features = ["client-hyper", "rustls", "rt-tokio"] }
    aws-smithy-http = "VERSION" aws-smithy-http = { version = "VERSION", features = ["rt-tokio"] }
  • ⚠ (smithy-rs#940) aws_smithy_client::Client::https() has been renamed to dyn_https().
    This is to clearly distinguish it from rustls and native_tls which do not use a boxed connector.

New this release: