Skip to content

Commit dbafc37

Browse files
authored
Merge smithy-rs-release-1.x.y into main (#4442)
2 parents 8a939c7 + c480bc6 commit dbafc37

File tree

8 files changed

+71
-103
lines changed

8 files changed

+71
-103
lines changed

.changelog/1763408225.md

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

.changelog/1763495472.md

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

.changelog/1763575687.md

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

.changelog/1764630048.md

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

.changelog/1765121185.md

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

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,25 @@
11
<!-- Do not manually edit this file. Use the `changelogger` tool. -->
2+
December 8th, 2025
3+
==================
4+
**Breaking Changes:**
5+
- :bug::warning: (server, [smithy-rs#4400](https://github.com/smithy-lang/smithy-rs/issues/4400), [smithy-rs#4397](https://github.com/smithy-lang/smithy-rs/issues/4397)) Fix issue where SigV4 envelopes for EventStreams did not support the initial message. This is _technically_ a breaking change but should not break consumers in practice since the
6+
resulting type has the same methods.
7+
8+
**New this release:**
9+
- :tada: (client, @annahay) Added methods in token bucket to indicate if bucket is full or empty
10+
- :bug: (client, [smithy-rs#4427](https://github.com/smithy-lang/smithy-rs/issues/4427)) Fix Content-Type and Accept headers for event streams in RPC v2 CBOR to set `application/vnd.amazon.eventstream`
11+
- :bug: (client, [aws-sdk-rust#1390](https://github.com/awslabs/aws-sdk-rust/issues/1390), @arielb1) In `legacy-rustls-ring`, polyfill `with_native_roots` to use `rustls_native_certs 0.8` to avoid
12+
RUSTSEC-2025-0134.
13+
- :bug: (all, @arielby) Publish an MSRV for all packages
14+
15+
16+
**Contributors**
17+
Thank you for your contributions! ❤
18+
- @annahay
19+
- @arielb1 ([aws-sdk-rust#1390](https://github.com/awslabs/aws-sdk-rust/issues/1390))
20+
- @arielby
21+
22+
223
November 20th, 2025
324
===================
425
**New this release:**

aws/SDK_CHANGELOG.next.json

Lines changed: 46 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"smithy-rs#4353"
1919
],
2020
"since-commit": "cf1e783d15842aab12e1ee02ce9d329b8443e848",
21-
"age": 3
21+
"age": 4
2222
},
2323
{
2424
"message": "Add tags to `AssumeRoleProviderBuilder`\n",
@@ -32,7 +32,7 @@
3232
"aws-sdk-rust#1366"
3333
],
3434
"since-commit": "cf1e783d15842aab12e1ee02ce9d329b8443e848",
35-
"age": 3
35+
"age": 4
3636
},
3737
{
3838
"message": "Adds new `with_test_defaults_v2()` for all clients supporting region configuration which applies `us-east-1` as default region if not set by user. This allows `aws-smithy-mocks` to work for non AWS SDK generated clients. Also clarify `test-util` feature requirement when using `aws-smithy-mocks`.\n",
@@ -47,7 +47,7 @@
4747
"smithy-rs#4189"
4848
],
4949
"since-commit": "cf1e783d15842aab12e1ee02ce9d329b8443e848",
50-
"age": 3
50+
"age": 4
5151
},
5252
{
5353
"message": "Upgrade MSRV to Rust 1.88.0.\n",
@@ -61,7 +61,7 @@
6161
"smithy-rs#4367"
6262
],
6363
"since-commit": "cf1e783d15842aab12e1ee02ce9d329b8443e848",
64-
"age": 3
64+
"age": 4
6565
},
6666
{
6767
"message": "Bump crc-fast version to 1.6.0\n",
@@ -73,7 +73,7 @@
7373
"author": "landonxjames",
7474
"references": [],
7575
"since-commit": "4533810c833251e78df3d8a4992b8ccc5f2fc67c",
76-
"age": 2
76+
"age": 3
7777
},
7878
{
7979
"message": "Validate `Region` is a valid host label when constructing endpoints.\n",
@@ -85,7 +85,47 @@
8585
"author": "aajtodd",
8686
"references": [],
8787
"since-commit": "4533810c833251e78df3d8a4992b8ccc5f2fc67c",
88-
"age": 2
88+
"age": 3
89+
},
90+
{
91+
"message": "Fix Content-Type and Accept headers for event streams in RPC v2 CBOR to set `application/vnd.amazon.eventstream`\n",
92+
"meta": {
93+
"bug": true,
94+
"breaking": false,
95+
"tada": false
96+
},
97+
"author": "ysaito1001",
98+
"references": [
99+
"smithy-rs#4427"
100+
],
101+
"since-commit": "8a939c7b0de5ddd921132e7d558851f7957c18a8",
102+
"age": 1
103+
},
104+
{
105+
"message": "In `legacy-rustls-ring`, polyfill `with_native_roots` to use `rustls_native_certs 0.8` to avoid\nRUSTSEC-2025-0134.",
106+
"meta": {
107+
"bug": true,
108+
"breaking": false,
109+
"tada": false
110+
},
111+
"author": "arielb1",
112+
"references": [
113+
"aws-sdk-rust#1390"
114+
],
115+
"since-commit": "8a939c7b0de5ddd921132e7d558851f7957c18a8",
116+
"age": 1
117+
},
118+
{
119+
"message": "Publish an MSRV for all packages\n\n",
120+
"meta": {
121+
"bug": true,
122+
"breaking": false,
123+
"tada": false
124+
},
125+
"author": "arielby",
126+
"references": [],
127+
"since-commit": "8a939c7b0de5ddd921132e7d558851f7957c18a8",
128+
"age": 1
89129
}
90130
],
91131
"aws-sdk-model": []

aws/sdk/Cargo.lock

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

0 commit comments

Comments
 (0)