Unverified Commit c18af759 authored by John DiSanti's avatar John DiSanti Committed by GitHub
Browse files

Fix old SDK changelog entries (#1113)

parent 1feb8231
Loading
Loading
Loading
Loading
+7 −15
Original line number Diff line number Diff line
<!-- Do not manually edit this file, use `update-changelogs` -->
0.5.2 (January 20th, 2022)
==========================

**New this release:**
- 🐛 ([smithy-rs#1100](https://github.com/awslabs/smithy-rs/issues/1100)) _Internal:_ Update sync script to run gradle clean. This fixes an issue where codegen was not triggered when only properties changed.



v0.5.1 (January 19th, 2022)
===========================

**New this release:**
- 🐛 ([smithy-rs#1089](https://github.com/awslabs/smithy-rs/issues/1089)) Fix dev-dependency cycle between aws-sdk-sso and aws-config



0.5.0 (January 19, 2022)
========================
**New this release:**
@@ -78,7 +78,7 @@ v0.3.0 (December 15th, 2021)
    **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"] }`                             |
@@ -99,8 +99,6 @@ v0.3.0 (December 15th, 2021)
- (smithy-rs#920) Fix typos in module documentation for generated crates
- 🐛 (aws-sdk-rust#301, smithy-rs#892) Avoid serializing repetitive `xmlns` attributes when serializing XML. This reduces the length of serialized requests and should improve compatibility with localstack.
- 🐛 (smithy-rs#953, aws-sdk-rust#331) Fixed a bug where certain characters caused a panic during URI encoding.
- 🐛 (smithy-rs#957) Include non-service-specific examples in the root Cargo workspace so that they can build
- 🐛 (smithy-rs#979) Make `aws-smithy-client` a required dependency in generated services.

**Contributors**
Thank you for your contributions! ❤
@@ -114,6 +112,7 @@ v0.2.0 (December 2nd, 2021)

v0.1.0 (December 2nd, 2021)
===========================

**New this release**
- Add docs.rs metadata section to all crates to document all features
- [Added a new example showing how to set all currently supported timeouts](./examples/setting_timeouts/src/main.rs)
@@ -123,13 +122,6 @@ v0.1.0 (December 2nd, 2021)
v0.0.26-alpha (November 23rd, 2021)
===================================

**New this release**
- :tada: Timeouts for requests are now configurable. You can set a timeout for each individual request attempt or for all attempts made for a request. (smithy-rs#831)
  - `SdkError` now includes a variant `TimeoutError` for when a request times out  (smithy-rs#885)
- Improve docs on `aws-smithy-client` (smithy-rs#855)
- Fix http-body dependency version (smithy-rs#883, aws-sdk-rust#305)


**Breaking Changes**
- `RetryConfigBuilder::merge_with` has been renamed to `RetryConfigBuilder::take_unset_from`
- `Credentials::from_keys` is now behind a feature flag named `hardcoded-credentials` in `aws-types`.