Skip to content

Commit e3646b1

Browse files
Merge smithy-rs-release-1.x.y into main (#3737)
2 parents fe1b341 + 4552ba1 commit e3646b1

File tree

3 files changed

+32
-26
lines changed

3 files changed

+32
-26
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,15 @@
11
<!-- Do not manually edit this file. Use the `changelogger` tool. -->
2+
July 3rd, 2024
3+
==============
4+
**New this release:**
5+
- :bug: (server, [smithy-rs#3643](https://github.com/smithy-lang/smithy-rs/issues/3643)) A feature, `aws-lambda`, has been added to generated SDKs to re-export types required for Lambda deployment.
6+
- :bug: (server, [smithy-rs#3471](https://github.com/smithy-lang/smithy-rs/issues/3471), [smithy-rs#3724](https://github.com/smithy-lang/smithy-rs/issues/3724), @djedward) Content-Type header validation now ignores parameter portion of media types.
7+
8+
**Contributors**
9+
Thank you for your contributions! ❤
10+
- @djedward ([smithy-rs#3471](https://github.com/smithy-lang/smithy-rs/issues/3471), [smithy-rs#3724](https://github.com/smithy-lang/smithy-rs/issues/3724))
11+
12+
213
June 19th, 2024
314
===============
415
**Breaking Changes:**

CHANGELOG.next.toml

Lines changed: 1 addition & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -9,23 +9,4 @@
99
# message = "Fix typos in module documentation for generated crates"
1010
# references = ["smithy-rs#920"]
1111
# meta = { "breaking" = false, "tada" = false, "bug" = false, "target" = "client | server | all"}
12-
# author = "rcoh"
13-
[[smithy-rs]]
14-
message = "A feature, `aws-lambda`, has been added to generated SDKs to re-export types required for Lambda deployment."
15-
references = ["smithy-rs#3643"]
16-
meta = { "breaking" = false, "bug" = true, "tada" = false, "target" = "server" }
17-
author = "drganjoo"
18-
19-
[[smithy-rs]]
20-
message = """
21-
Content-Type header validation now ignores parameter portion of media types.
22-
"""
23-
references = ["smithy-rs#3471","smithy-rs#3724"]
24-
meta = { "breaking" = false, "tada" = false, "bug" = true, target = "server" }
25-
authors = ["djedward"]
26-
27-
[[aws-sdk-rust]]
28-
message = "Add customizations for S3 Expires fields."
29-
references = ["smithy-rs#3730"]
30-
meta = { "breaking" = false, "tada" = false, "bug" = false }
31-
author = "landonxjames"
12+
# author = "rcoh"

aws/SDK_CHANGELOG.next.json

Lines changed: 20 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"smithy-rs#3673"
1919
],
2020
"since-commit": "052b4dadc06354e673f6a642487871d5f50d135a",
21-
"age": 4
21+
"age": 5
2222
},
2323
{
2424
"message": "Fix S3 ListParts API paginator infinite loop.",
@@ -32,7 +32,7 @@
3232
"aws-sdk-rust#1143"
3333
],
3434
"since-commit": "052b4dadc06354e673f6a642487871d5f50d135a",
35-
"age": 4
35+
"age": 5
3636
},
3737
{
3838
"message": "Stalled stream protection will no longer be applied to the following Lambda operations: [Invoke], [InvokeAsync], [InvokeWithResponseStream].\n\n[Invoke]: https://docs.rs/aws-sdk-lambda/latest/aws_sdk_lambda/client/struct.Client.html#method.invoke\n[InvokeAsync]: https://docs.rs/aws-sdk-lambda/latest/aws_sdk_lambda/client/struct.Client.html#method.invoke_async\n[InvokeWithResponseStream]: https://docs.rs/aws-sdk-lambda/latest/aws_sdk_lambda/client/struct.Client.html#method.invoke_with_response_stream\n",
@@ -47,7 +47,7 @@
4747
"smithy-rs#3639"
4848
],
4949
"since-commit": "57ed310e6d21041eb36d825c50032295eef0b630",
50-
"age": 2
50+
"age": 3
5151
},
5252
{
5353
"message": "Add documentation on the default configuration to `from_env`, `load_from_env`, `defaults`, and `load_from_defaults` in the `aws-config` crate.",
@@ -61,7 +61,7 @@
6161
"aws-sdk-rust#1162"
6262
],
6363
"since-commit": "57ed310e6d21041eb36d825c50032295eef0b630",
64-
"age": 2
64+
"age": 3
6565
},
6666
{
6767
"message": "Pre-signed requests may now be converted to Http v1.x requests. This requires enabling the `http-1x` feature for the SDK in question.\nThen, call `PresignedRequest::make_http_1x_request` or `PresignedRequest::into_http_1x_request`.\n",
@@ -75,7 +75,7 @@
7575
"smithy-rs#3696"
7676
],
7777
"since-commit": "57ed310e6d21041eb36d825c50032295eef0b630",
78-
"age": 2
78+
"age": 3
7979
},
8080
{
8181
"message": "`AwsErrorCodeClassifier` for S3 now treats `InternalError` as a transient error to trigger retries.",
@@ -89,7 +89,21 @@
8989
"aws-sdk-rust#1163"
9090
],
9191
"since-commit": "57ed310e6d21041eb36d825c50032295eef0b630",
92-
"age": 2
92+
"age": 3
93+
},
94+
{
95+
"message": "Add customizations for S3 Expires fields.",
96+
"meta": {
97+
"bug": false,
98+
"breaking": false,
99+
"tada": false
100+
},
101+
"author": "landonxjames",
102+
"references": [
103+
"smithy-rs#3730"
104+
],
105+
"since-commit": "fe1b341e8f1a4ee307554f1a63bf62ec72d8c9a3",
106+
"age": 1
93107
}
94108
],
95109
"aws-sdk-model": []

0 commit comments

Comments
 (0)