Skip to content

Commit da2ffc5

Browse files
Merge smithy-rs-release-1.x.y into main (#3680)
2 parents 9c1ae5a + e8c48a4 commit da2ffc5

File tree

3 files changed

+24
-72
lines changed

3 files changed

+24
-72
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
<!-- Do not manually edit this file. Use the `changelogger` tool. -->
2+
June 3rd, 2024
3+
==============
4+
**New this release:**
5+
- (client, [smithy-rs#3664](https://github.com/smithy-lang/smithy-rs/issues/3664)) Reduce verbosity of various debug logs
6+
7+
28
May 28th, 2024
39
==============
410

CHANGELOG.next.toml

Lines changed: 9 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -11,20 +11,14 @@
1111
# meta = { "breaking" = false, "tada" = false, "bug" = false, "target" = "client | server | all"}
1212
# author = "rcoh"
1313

14-
[[aws-sdk-rust]]
15-
message = "Add support for v1 `http_body::Body` to `aws_smithy_types::byte_stream::bytestream_util::PathBody`."
16-
references = ["smithy-rs#1925", "smithy-rs#3673"]
17-
meta = { "breaking" = false, "tada" = false, "bug" = false }
18-
author = "Velfi"
19-
20-
[[smithy-rs]]
21-
message = "Add support for v1 `http_body::Body` to `aws_smithy_types::byte_stream::bytestream_util::PathBody`."
22-
references = ["smithy-rs#1925", "smithy-rs#3673"]
23-
meta = { "breaking" = false, "tada" = false, "bug" = false, "target" = "all"}
24-
author = "Velfi"
14+
[[aws-sdk-rust]]
15+
message = "Add support for v1 `http_body::Body` to `aws_smithy_types::byte_stream::bytestream_util::PathBody`."
16+
references = ["smithy-rs#1925", "smithy-rs#3673"]
17+
meta = { "breaking" = false, "tada" = false, "bug" = false }
18+
author = "Velfi"
2519

2620
[[smithy-rs]]
27-
message = "Reduce verbosity of various debug logs"
28-
references = ["smithy-rs#3664"]
29-
meta = { "breaking" = false, "tada" = false, "bug" = false, "target" = "client"}
30-
author = "landonxjames"
21+
message = "Add support for v1 `http_body::Body` to `aws_smithy_types::byte_stream::bytestream_util::PathBody`."
22+
references = ["smithy-rs#1925", "smithy-rs#3673"]
23+
meta = { "breaking" = false, "tada" = false, "bug" = false, "target" = "all"}
24+
author = "Velfi"

aws/SDK_CHANGELOG.next.json

Lines changed: 9 additions & 57 deletions
Original file line numberDiff line numberDiff line change
@@ -5,54 +5,6 @@
55
{
66
"smithy-rs": [],
77
"aws-sdk-rust": [
8-
{
9-
"message": "Added support for waiters. Services that model waiters now have a `Waiters` trait that adds\nsome methods prefixed with `wait_until` to the existing clients. These can be used to, for example\nin S3, wait for a newly created bucket to be ready, or in EC2, to wait for a started instance to\nhave the status OK.\n\nUsing a waiter looks like the following example for EC2:\n```rust\nuse aws_sdk_ec2::client::Waiters;\n\nlet result = ec2_client.wait_until_instance_status_ok()\n .instance_ids(\"some-instance-id\")\n .wait(Duration::from_secs(300))\n .await;\n```\n",
10-
"meta": {
11-
"bug": false,
12-
"breaking": false,
13-
"tada": true
14-
},
15-
"author": "jdisanti",
16-
"references": [
17-
"aws-sdk-rust#400",
18-
"smithy-rs#3595",
19-
"smithy-rs#3593",
20-
"smithy-rs#3585",
21-
"smithy-rs#3571",
22-
"smithy-rs#3569"
23-
],
24-
"since-commit": "d7be22025857da5d21a0a1c8f5753fcf48e8d0ac",
25-
"age": 5
26-
},
27-
{
28-
"message": "SDK crates now set the `rust-version` property in their Cargo.toml files to indicate the minimum supported Rust version.",
29-
"meta": {
30-
"bug": false,
31-
"breaking": false,
32-
"tada": true
33-
},
34-
"author": "jdisanti",
35-
"references": [
36-
"smithy-rs#3601"
37-
],
38-
"since-commit": "d7be22025857da5d21a0a1c8f5753fcf48e8d0ac",
39-
"age": 5
40-
},
41-
{
42-
"message": "`aws_config::default_provider::use_dual_stack_provider` is now public instead of `pub(crate)`",
43-
"meta": {
44-
"bug": false,
45-
"breaking": false,
46-
"tada": false
47-
},
48-
"author": "jdisanti",
49-
"references": [
50-
"aws-sdk-rust#879",
51-
"smithy-rs#3611"
52-
],
53-
"since-commit": "d7be22025857da5d21a0a1c8f5753fcf48e8d0ac",
54-
"age": 5
55-
},
568
{
579
"message": "`aws-config::loader::ConfigLoader` now creates an `IdentityCache` by default when using `BehaviorVersion::v2024_03_28()`\nor newer. If you're using `BehaviorVersion::latest()`, you will get this change automatically when updating. This\nallows clients created from `SdkConfig` to use the same cache instance by default resulting in fewer cache misses\nwhen using multiple clients.\n",
5810
"meta": {
@@ -65,7 +17,7 @@
6517
"smithy-rs#3427"
6618
],
6719
"since-commit": "51429ad43da1b62013535aab643c24530f3e44bd",
68-
"age": 4
20+
"age": 5
6921
},
7022
{
7123
"message": "Stalled stream protection on uploads is now enabled by default behind `BehaviorVersion::v2024_03_28()`. If you're using `BehaviorVersion::latest()`, you will get this change automatically by running `cargo update`. Updating your SDK is not necessary, this change will happen when a new version of the client libraries are consumed.",
@@ -79,7 +31,7 @@
7931
"smithy-rs#3527"
8032
],
8133
"since-commit": "51429ad43da1b62013535aab643c24530f3e44bd",
82-
"age": 4
34+
"age": 5
8335
},
8436
{
8537
"message": "Fix panics that occurred when `Duration` for exponential backoff could not be created from too big a float.",
@@ -93,7 +45,7 @@
9345
"aws-sdk-rust#1133"
9446
],
9547
"since-commit": "27b4d14a5102fe1ac928e1e0c647d53597125d51",
96-
"age": 3
48+
"age": 4
9749
},
9850
{
9951
"message": "Clients now enforce that the Content-Length sent by the server matches the length of the returned response body. In most cases, Hyper will enforce this behavior, however, in extremely rare circumstances where the Tokio runtime is dropped in between subsequent requests, this scenario can occur.",
@@ -107,7 +59,7 @@
10759
"aws-sdk-rust#1079"
10860
],
10961
"since-commit": "27b4d14a5102fe1ac928e1e0c647d53597125d51",
110-
"age": 3
62+
"age": 4
11163
},
11264
{
11365
"message": "Fixes stalled upload stream protection to not apply to empty request bodies and to stop checking for violations once the request body has been read.",
@@ -126,7 +78,7 @@
12678
"aws-sdk-rust#1148"
12779
],
12880
"since-commit": "27b4d14a5102fe1ac928e1e0c647d53597125d51",
129-
"age": 3
81+
"age": 4
13082
},
13183
{
13284
"message": "Updating the documentation for the `app_name` method on `ConfigLoader` to indicate the order of precedence for the sources of the `AppName`.",
@@ -140,7 +92,7 @@
14092
"smithy-rs#3645"
14193
],
14294
"since-commit": "27b4d14a5102fe1ac928e1e0c647d53597125d51",
143-
"age": 3
95+
"age": 4
14496
},
14597
{
14698
"message": "Update MSRV to `1.76.0`",
@@ -154,7 +106,7 @@
154106
"smithy-rs#3653"
155107
],
156108
"since-commit": "27b4d14a5102fe1ac928e1e0c647d53597125d51",
157-
"age": 3
109+
"age": 4
158110
},
159111
{
160112
"message": "Compression is now supported for operations modeled with the `@requestCompression` trait.\n\n[**For more details, see the long-form changelog discussion**](https://github.com/smithy-lang/smithy-rs/discussions/3646).\n",
@@ -168,7 +120,7 @@
168120
"smithy-rs#2891"
169121
],
170122
"since-commit": "27b4d14a5102fe1ac928e1e0c647d53597125d51",
171-
"age": 3
123+
"age": 4
172124
},
173125
{
174126
"message": "Fix the Content-Length enforcement so it is only applied to GET requests.",
@@ -186,7 +138,7 @@
186138
"smithy-rs#3657"
187139
],
188140
"since-commit": "db89652d8c11cd2a2da8e887fac8b34393c182fe",
189-
"age": 2
141+
"age": 3
190142
}
191143
],
192144
"aws-sdk-model": []

0 commit comments

Comments
 (0)