Skip to content

Commit fd9ab82

Browse files
Merge smithy-rs-release-1.x.y into main (#4202)
2 parents ccf374d + e4b7021 commit fd9ab82

File tree

4 files changed

+31
-66
lines changed

4 files changed

+31
-66
lines changed

.changelog/1751334589.md

Lines changed: 0 additions & 14 deletions
This file was deleted.

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+
July 8th, 2025
3+
==============
4+
**New this release:**
5+
- (client, [smithy-rs#4076](https://github.com/smithy-lang/smithy-rs/issues/4076), [smithy-rs#4198](https://github.com/smithy-lang/smithy-rs/issues/4198)) Allows customers to configure the auth schemes and auth scheme resolver. For more information see the GitHub [discussion](https://github.com/smithy-lang/smithy-rs/discussions/4197).
6+
7+
28
June 30th, 2025
39
===============
410

aws/SDK_CHANGELOG.next.json

Lines changed: 21 additions & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -5,48 +5,6 @@
55
{
66
"smithy-rs": [],
77
"aws-sdk-rust": [
8-
{
9-
"message": "Removing the `optimize_crc32_auto` feature flag from the `crc-fast` dependency of the `aws-smithy-checksums` crate since it was causing build issues for some customers.\n",
10-
"meta": {
11-
"bug": true,
12-
"breaking": false,
13-
"tada": false
14-
},
15-
"author": "landonxjames",
16-
"references": [
17-
"aws-sdk-rust#1291"
18-
],
19-
"since-commit": "4e4a0ee2d663a1212927a8a70ca97eac567d54b6",
20-
"age": 5
21-
},
22-
{
23-
"message": "fix simple rules behavior with `RuleMode::MatchAny`\n",
24-
"meta": {
25-
"bug": true,
26-
"breaking": false,
27-
"tada": false
28-
},
29-
"author": "aajtodd",
30-
"references": [
31-
"smithy-rs#4135"
32-
],
33-
"since-commit": "4e4a0ee2d663a1212927a8a70ca97eac567d54b6",
34-
"age": 5
35-
},
36-
{
37-
"message": "Introduce a new `repeatedly()` function to `aws-smithy-mocks` sequence builder to build mock rules that behave as an\ninfinite sequence.\n\n```rust\nlet rule = mock!(aws_sdk_s3::Client::get_object)\n .sequence()\n .http_status(503, None)\n .times(2) // repeat the last output twice before moving onto the next response in the sequence\n .output(|| GetObjectOutput::builder()\n .body(ByteStream::from_static(b\"success\"))\n .build()\n )\n .repeatedly() // repeat the last output forever\n .build();\n```\n",
38-
"meta": {
39-
"bug": false,
40-
"breaking": false,
41-
"tada": true
42-
},
43-
"author": "aajtodd",
44-
"references": [
45-
"smithy-rs#4135"
46-
],
47-
"since-commit": "4e4a0ee2d663a1212927a8a70ca97eac567d54b6",
48-
"age": 5
49-
},
508
{
519
"message": "Fix h2 GoAway errors not being retried by hyper legacy client\n",
5210
"meta": {
@@ -59,7 +17,7 @@
5917
"aws-sdk-rust#1272"
6018
],
6119
"since-commit": "7d64b2f9e8fc89159d7fb1ff1309d6d6b8b53189",
62-
"age": 4
20+
"age": 5
6321
},
6422
{
6523
"message": "Fix default supported protocols incorrectly ordered in `ClientProtocolLoader`.\n",
@@ -73,7 +31,7 @@
7331
"smithy-rs#4165"
7432
],
7533
"since-commit": "c624a84d9ecc451854521e363e34cf6f1c10e009",
76-
"age": 3
34+
"age": 4
7735
},
7836
{
7937
"message": "Add support for fetching account ID from IMDS credentials on EC2.\n",
@@ -87,7 +45,7 @@
8745
"smithy-rs#4109"
8846
],
8947
"since-commit": "c624a84d9ecc451854521e363e34cf6f1c10e009",
90-
"age": 3
48+
"age": 4
9149
},
9250
{
9351
"message": "Temporarily disable fetching account ID from IMDS credentials on EC2.\n",
@@ -101,7 +59,7 @@
10159
"smithy-rs#4187"
10260
],
10361
"since-commit": "dd10f0602682dfabafc465dbcd9eb92d3d915c51",
104-
"age": 2
62+
"age": 3
10563
},
10664
{
10765
"message": "Fix hyper 1.x connection refused errors not marked as retryable\n",
@@ -113,7 +71,7 @@
11371
"author": "aajtodd",
11472
"references": [],
11573
"since-commit": "dd10f0602682dfabafc465dbcd9eb92d3d915c51",
116-
"age": 2
74+
"age": 3
11775
},
11876
{
11977
"message": "Make Rpc V2 CBOR a compatible protocol for `awsQuery` using `awsQueryCompatible` trait\n",
@@ -127,7 +85,22 @@
12785
"smithy-rs#4186"
12886
],
12987
"since-commit": "dd10f0602682dfabafc465dbcd9eb92d3d915c51",
130-
"age": 2
88+
"age": 3
89+
},
90+
{
91+
"message": "Allows customers to configure the auth schemes and auth scheme resolver. For more information see the GitHub [discussion](https://github.com/smithy-lang/smithy-rs/discussions/4197).\n",
92+
"meta": {
93+
"bug": false,
94+
"breaking": false,
95+
"tada": false
96+
},
97+
"author": "ysaito1001",
98+
"references": [
99+
"smithy-rs#4076",
100+
"smithy-rs#4198"
101+
],
102+
"since-commit": "ccf374dddc0690ef8aca1ed006b9e9b21299558e",
103+
"age": 1
131104
}
132105
],
133106
"aws-sdk-model": []

aws/sdk/Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)