Skip to content

Commit 733701a

Browse files
82marbagDaniele Ahmed
authored and
Daniele Ahmed
committed
Update CHANGELOG
Signed-off-by: Daniele Ahmed <[email protected]>
1 parent a322ef6 commit 733701a

File tree

1 file changed

+130
-0
lines changed

1 file changed

+130
-0
lines changed

CHANGELOG.next.toml

+130
Original file line numberDiff line numberDiff line change
@@ -240,6 +240,136 @@ references = ["smithy-rs#2428", "smithy-rs#2208"]
240240
meta = { "breaking" = false, "tada" = true, "bug" = false, "target" = "client" }
241241
author = "jdisanti"
242242

243+
[[smithy-rs]]
244+
message = "Remove unnecessary type parameter `B` from `Upgrade` service."
245+
references = ["smithy-rs#2436"]
246+
meta = { "breaking" = true, "tada" = false, "bug" = false, "target" = "server" }
247+
author = "hlbarber"
248+
249+
[[smithy-rs]]
250+
message = "Fix `FilterByOperationName` plugin. This previous caused services with this applied to fail to compile due to mismatched bounds."
251+
references = ["smithy-rs#2441"]
252+
meta = { "breaking" = false, "tada" = false, "bug" = true, "target" = "server" }
253+
author = "hlbarber"
254+
255+
[[aws-sdk-rust]]
256+
message = "Add more client re-exports. Specifically, it re-exports `aws_smithy_http::body::SdkBody`, `aws_smithy_http::byte_stream::error::Error`, and `aws_smithy_http::operation::{Request, Response}`."
257+
references = ["smithy-rs#2437", "aws-sdk-rust#600"]
258+
meta = { "breaking" = false, "tada" = false, "bug" = false }
259+
author = "ysaito1001"
260+
261+
[[smithy-rs]]
262+
message = "Add more client re-exports. Specifically, it re-exports `aws_smithy_http::body::SdkBody`, `aws_smithy_http::byte_stream::error::Error`, and `aws_smithy_http::operation::{Request, Response}`."
263+
references = ["smithy-rs#2437", "aws-sdk-rust#600"]
264+
meta = { "breaking" = false, "tada" = false, "bug" = false, "target" = "client" }
265+
author = "ysaito1001"
266+
267+
[[aws-sdk-rust]]
268+
message = "Enable presigning for S3's `HeadObject` operation."
269+
references = ["aws-sdk-rust#753", "smithy-rs#2451"]
270+
meta = { "breaking" = false, "tada" = true, "bug" = false }
271+
author = "Velfi"
272+
273+
[[smithy-rs]]
274+
message = "Smithy members named `send` were previously renamed to `send_value` at codegen time. These will now be called `send` in the generated code."
275+
references = ["smithy-rs#2382"]
276+
meta = { "breaking" = true, "tada" = false, "bug" = true, "target" = "server" }
277+
author = "jdisanti"
278+
279+
[[aws-sdk-rust]]
280+
message = "The modules in the SDK crates have been reorganized. See the [SDK Crate Reorganization Upgrade Guidance](https://github.com/awslabs/aws-sdk-rust/discussions/752) to see how to fix your code after this change."
281+
references = ["smithy-rs#2433"]
282+
meta = { "breaking" = true, "tada" = false, "bug" = false }
283+
author = "jdisanti"
284+
285+
[[smithy-rs]]
286+
message = "The modules in generated client crates have been reorganized. See the [Client Crate Reorganization Upgrade Guidance](https://github.com/awslabs/smithy-rs/discussions/2449) to see how to fix your code after this change."
287+
references = ["smithy-rs#2448"]
288+
meta = { "breaking" = true, "tada" = false, "bug" = false, "target" = "client" }
289+
author = "jdisanti"
290+
291+
[[smithy-rs]]
292+
message = "Fix bug in timestamp format resolution. Prior to this fix, the timestamp format may have been incorrect if set on the target instead of on the member."
293+
references = ["smithy-rs#2226"]
294+
meta = { "breaking" = false, "tada" = false, "bug" = true, "target" = "all" }
295+
author = "rcoh"
296+
297+
[[smithy-rs]]
298+
message = "Add support for offsets when parsing datetimes. RFC3339 date times now support offsets like `-0200`"
299+
references = ["smithy-rs#2226"]
300+
meta = { "breaking" = false, "tada" = false, "bug" = false, "target" = "all" }
301+
author = "rcoh"
302+
303+
304+
[[aws-sdk-rust]]
305+
message = """Reconnect on transient errors.
306+
307+
If a transient error (timeout, 500, 503, 503) is encountered, the connection will be evicted from the pool and will not
308+
be reused. This is enabled by default for all AWS services. It can be disabled by setting `RetryConfig::with_reconnect_mode`
309+
310+
Although there is no API breakage from this change, it alters the client behavior in a way that may cause breakage for customers.
311+
"""
312+
references = ["aws-sdk-rust#160", "smithy-rs#2445"]
313+
meta = { "breaking" = true, "tada" = false, "bug" = false }
314+
author = "rcoh"
315+
316+
[[smithy-rs]]
317+
message = """Reconnect on transient errors.
318+
319+
Note: **this behavior is disabled by default for generic clients**. It can be enabled with
320+
`aws_smithy_client::Builder::reconnect_on_transient_errors`
321+
322+
If a transient error (timeout, 500, 503, 503) is encountered, the connection will be evicted from the pool and will not
323+
be reused.
324+
"""
325+
references = ["aws-sdk-rust#160", "smithy-rs#2445"]
326+
meta = { "breaking" = false, "tada" = false, "bug" = false, "target" = "client" }
327+
author = "rcoh"
328+
329+
[[aws-sdk-rust]]
330+
message = "Update MSRV to 1.66.1"
331+
references = ["smithy-rs#2467"]
332+
meta = { "breaking" = true, "tada" = true, "bug" = false }
333+
author = "Velfi"
334+
335+
[[smithy-rs]]
336+
message = "Update MSRV to 1.66.1"
337+
references = ["smithy-rs#2467"]
338+
meta = { "breaking" = true, "tada" = true, "bug" = false, "target" = "all" }
339+
author = "Velfi"
340+
341+
[[aws-sdk-rust]]
342+
message = """Default connector provided by `aws-config` now respects `ConnectorSettings`.
343+
344+
Previously, it used the timeout settings provided by aws-config. A test from @Oliboy50 has been incorporated to verify this behavior.
345+
346+
**Behavior Change**: Prior to this change, the Hyper client would be shared between all service clients. After this change, each service client will use its own Hyper Client.
347+
To revert to the previous behavior, set `HttpConnector::Prebuilt` on `SdkConfig::http_connector`.
348+
"""
349+
references = ["smithy-rs#2471", "smithy-rs#2333", "smithy-rs#2151"]
350+
meta = { "breaking" = false, "tada" = false, "bug" = true }
351+
author = "rcoh"
352+
353+
[[aws-sdk-rust]] # remove interfaces
354+
message = """Remove deprecated `ResolveAwsEndpoint` interfaces.
355+
[For details see the longform changelog entry](https://github.com/awslabs/aws-sdk-rust/discussions/755).
356+
"""
357+
author = "rcoh"
358+
references = ["smithy-rs#2390", "smithy-rs#1784"]
359+
meta = { "breaking" = true, "tada" = false, "bug" = false }
360+
361+
[[smithy-rs]] # tokio-upgrade
362+
message = "Increase Tokio version to 1.23.1 for all crates. This is to address [RUSTSEC-2023-0001](https://rustsec.org/advisories/RUSTSEC-2023-0001)"
363+
references = ["smithy-rs#2474"]
364+
meta = { "breaking" = false, "tada" = false, "bug" = false, target = "all" }
365+
author = "rcoh"
366+
367+
[[aws-sdk-rust]] # tokio-upgrade
368+
message = "Increase Tokio version to 1.23.1 for all crates. This is to address [RUSTSEC-2023-0001](https://rustsec.org/advisories/RUSTSEC-2023-0001)"
369+
references = ["smithy-rs#2474"]
370+
meta = { "breaking" = false, "tada" = false, "bug" = false }
371+
author = "rcoh"
372+
243373
[[smithy-rs]]
244374
message = """Servers can send the `ServerRequestId` in the response headers.
245375
Servers need to create their service using the new layer builder `ServerRequestIdProviderLayer::new_with_response_header`:

0 commit comments

Comments
 (0)