From 5b49350037d60bcf0c596752714199a1d5729555 Mon Sep 17 00:00:00 2001 From: AWS SDK Rust Bot Date: Wed, 22 Jun 2022 21:20:42 +0000 Subject: [PATCH] Update changelogs --- CHANGELOG.md | 11 ++++++++++ CHANGELOG.next.toml | 49 +------------------------------------------- aws/SDK_CHANGELOG.md | 10 +++++++++ 3 files changed, 22 insertions(+), 48 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9738dfac20..65e3b8f61d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,15 @@ +v0.44.0 (June 22nd, 2022) +========================= +**New this release:** +- ([smithy-rs#1460](https://github.com/awslabs/smithy-rs/issues/1460)) Fix a potential bug with `ByteStream`'s implementation of `futures_core::stream::Stream` and add helpful error messages + for users on 32-bit systems that try to stream HTTP bodies larger than 4.29Gb. +- 🐛 ([smithy-rs#1427](https://github.com/awslabs/smithy-rs/issues/1427), [smithy-rs#1465](https://github.com/awslabs/smithy-rs/issues/1465), [smithy-rs#1459](https://github.com/awslabs/smithy-rs/issues/1459)) Fix RustWriter bugs for `rustTemplate` and `docs` utility methods +- 🐛 ([aws-sdk-rust#554](https://github.com/awslabs/aws-sdk-rust/issues/554)) Requests to Route53 that return `ResourceId`s often come with a prefix. When passing those IDs directly into another + request, the request would fail unless they manually stripped the prefix. Now, when making a request with a prefixed ID, + the prefix will be stripped automatically. + + v0.43.0 (June 9th, 2022) ======================== **New this release:** diff --git a/CHANGELOG.next.toml b/CHANGELOG.next.toml index 2edd780695..1dffbf7f63 100644 --- a/CHANGELOG.next.toml +++ b/CHANGELOG.next.toml @@ -9,51 +9,4 @@ # message = "Fix typos in module documentation for generated crates" # references = ["smithy-rs#920"] # meta = { "breaking" = false, "tada" = false, "bug" = false } -# author = "rcoh" - -[[aws-sdk-rust]] -message = "Fix bug in profile file credential provider where a missing `default` profile lead to an unintended error." -references = ["aws-sdk-rust#547", "smithy-rs#1458"] -meta = { "breaking" = false, "tada" = false, "bug" = true } -author = "rcoh" - -[[smithy-rs]] -message = """ -Fix a potential bug with `ByteStream`'s implementation of `futures_core::stream::Stream` and add helpful error messages -for users on 32-bit systems that try to stream HTTP bodies larger than 4.29Gb. -""" -references = ["smithy-rs#1460"] -meta = { "breaking" = false, "tada" = false, "bug" = false } -author = "Velfi" - -[[aws-sdk-rust]] -message = "Add `Debug` implementation to several types in `aws-config`" -references = ["smithy-rs#1421"] -meta = { "breaking" = false, "tada" = false, "bug" = false } -author = "jdisanti" - -[[smithy-rs]] -message = "Fix RustWriter bugs for `rustTemplate` and `docs` utility methods" -references = ["smithy-rs#1427", "smithy-rs#1465", "smithy-rs#1459"] -meta = { "breaking" = false, "tada" = false, "bug" = true } -author = "rcoh" - -[[smithy-rs]] -message = """ -Requests to Route53 that return `ResourceId`s often come with a prefix. When passing those IDs directly into another -request, the request would fail unless they manually stripped the prefix. Now, when making a request with a prefixed ID, -the prefix will be stripped automatically. -""" -references = ["aws-sdk-rust#554"] -meta = { "breaking" = false, "tada" = false, "bug" = true } -author = "Velfi" - -[[aws-sdk-rust]] -message = """ -Fix bug in retry policy where user configured timeouts were not retried. With this fix, setting -[`with_call_attempt_timeout`](https://docs.rs/aws-smithy-types/0.43.0/aws_smithy_types/timeout/struct.Api.html#method.with_call_attempt_timeout) -will lead to a retry when retries are enabled. -""" -meta = { "breaking" = false, "tada" = false, "bug" = true } -references = ["aws-sdk-rust#558", "smithy-rs#1478"] -author = "rcoh" +# author = "rcoh" \ No newline at end of file diff --git a/aws/SDK_CHANGELOG.md b/aws/SDK_CHANGELOG.md index 41d82c5d31..36f9720c83 100644 --- a/aws/SDK_CHANGELOG.md +++ b/aws/SDK_CHANGELOG.md @@ -1,4 +1,14 @@ +v0.14.0 (June 22nd, 2022) +========================= +**New this release:** +- 🐛 ([aws-sdk-rust#547](https://github.com/awslabs/aws-sdk-rust/issues/547), [smithy-rs#1458](https://github.com/awslabs/smithy-rs/issues/1458)) Fix bug in profile file credential provider where a missing `default` profile lead to an unintended error. +- ([smithy-rs#1421](https://github.com/awslabs/smithy-rs/issues/1421)) Add `Debug` implementation to several types in `aws-config` +- 🐛 ([aws-sdk-rust#558](https://github.com/awslabs/aws-sdk-rust/issues/558), [smithy-rs#1478](https://github.com/awslabs/smithy-rs/issues/1478)) Fix bug in retry policy where user configured timeouts were not retried. With this fix, setting + [`with_call_attempt_timeout`](https://docs.rs/aws-smithy-types/0.43.0/aws_smithy_types/timeout/struct.Api.html#method.with_call_attempt_timeout) + will lead to a retry when retries are enabled. + + v0.13.0 (June 9th, 2022) ======================== **New this release:**