From 7b1654199da448fc67cd32d9bc398e97136a4836 Mon Sep 17 00:00:00 2001 From: Russell Cohen Date: Fri, 13 Oct 2023 12:37:05 -0400 Subject: [PATCH] Changelog updates --- CHANGELOG.next.toml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.next.toml b/CHANGELOG.next.toml index c6be15ef79c..8deccfa8ec9 100644 --- a/CHANGELOG.next.toml +++ b/CHANGELOG.next.toml @@ -64,7 +64,7 @@ Support for Smithy IDLv2 nullability is now enabled by default. You can maintain For upgrade guidance and more info, see [here](https://github.com/awslabs/smithy-rs/discussions/2929). """ references = ["smithy-rs#2916", "smithy-rs#1767"] -meta = { "breaking" = false, "tada" = true, "bug" = false, "target" = "client"} +meta = { "breaking" = false, "tada" = true, "bug" = false, "target" = "client" } author = "Velfi" [[aws-sdk-rust]] @@ -343,3 +343,15 @@ message = """ references = ["smithy-rs#3032"] meta = { "breaking" = true, "tada" = false, "bug" = false, "target" = "client" } author = "ysaito1001" + +[[smithy-rs]] +message = "**This change has [detailed upgrade guidance](https://github.com/awslabs/smithy-rs/discussions/3067)**. A summary is below.

The `HttpRequest` type alias now points to `aws-smithy-runtime-api::client::http::Request`. This is a first-party request type to allow us to gracefully support `http = 1.0` when it arrives. Most customer code using this method should be unaffected. `TryFrom`/`TryInto` conversions are provided for `http = 0.2.*`." +references = ["smithy-rs#3059"] +meta = { "breaking" = true, "tada" = false, "bug" = false, "target" = "client" } +author = "rcoh" + +[[aws-sdk-rust]] +message = "[`PresignedRequest`](https://docs.rs/aws-sdk-s3/latest/aws_sdk_s3/presigning/struct.PresignedRequest.html) now returns standard-library types instead of types from the `http` crate. `to_http_request` has been renamed `to_http_02x_request`." +references = ["smithy-rs#3059"] +meta = { "breaking" = true, "tada" = false, "bug" = false } +author = "rcoh"