Skip to content

Commit

Permalink
Merge smithy-rs-release-1.x.y into main (#3810)
Browse files Browse the repository at this point in the history
  • Loading branch information
aws-sdk-rust-ci authored Aug 28, 2024
2 parents d64aea2 + 90a1898 commit 60310ee
Show file tree
Hide file tree
Showing 8 changed files with 86 additions and 93 deletions.
12 changes: 0 additions & 12 deletions .changelog/1724090349.md

This file was deleted.

13 changes: 0 additions & 13 deletions .changelog/1724096455.md

This file was deleted.

14 changes: 0 additions & 14 deletions .changelog/1724182177.md

This file was deleted.

13 changes: 0 additions & 13 deletions .changelog/1724255475.md

This file was deleted.

14 changes: 0 additions & 14 deletions .changelog/1724459075.md

This file was deleted.

10 changes: 0 additions & 10 deletions .changelog/account-id-endpoint-built-ins.md

This file was deleted.

12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,16 @@
<!-- Do not manually edit this file. Use the `changelogger` tool. -->
August 28th, 2024
=================
**Breaking Changes:**
- :warning: (all, [smithy-rs#3800](https://github.com/smithy-lang/smithy-rs/issues/3800)) Upgrade MSRV to Rust 1.78.0.

**New this release:**
- :bug: (client, [smithy-rs#3798](https://github.com/smithy-lang/smithy-rs/issues/3798)) Fix the execution order of [modify_before_serialization](https://docs.rs/aws-smithy-runtime-api/latest/aws_smithy_runtime_api/client/interceptors/trait.Intercept.html#method.modify_before_serialization) and [read_before_serialization](https://docs.rs/aws-smithy-runtime-api/latest/aws_smithy_runtime_api/client/interceptors/trait.Intercept.html#method.read_before_serialization) in the orchestrator. The `modify_before_serialization` method now executes before the `read_before_serialization` method. This adjustment may result in changes in behavior depending on how you customize interceptors.
- (client, [smithy-rs#1925](https://github.com/smithy-lang/smithy-rs/issues/1925)) Backport connection poisoning to hyper 1.x support
- :bug: (client, [aws-sdk-rust#821](https://github.com/awslabs/aws-sdk-rust/issues/821), [smithy-rs#3797](https://github.com/smithy-lang/smithy-rs/issues/3797)) Fix the [Length::UpTo](https://docs.rs/aws-smithy-types/1.2.2/aws_smithy_types/byte_stream/enum.Length.html) usage in [FsBuilder](https://docs.rs/aws-smithy-types/1.2.2/aws_smithy_types/byte_stream/struct.FsBuilder.html), ensuring that the specified length does not exceed the remaining file length.
- :bug: (client, [aws-sdk-rust#820](https://github.com/awslabs/aws-sdk-rust/issues/820)) Re-export `ByteStream`'s `Length` and `FsBuilder`. By making these types available directly within a client crate, customers can use `ByteStream::read_from` without needing to import them separately from the `aws-smithy-types` crate.


August 16th, 2024
=================

Expand Down
91 changes: 74 additions & 17 deletions aws/SDK_CHANGELOG.next.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,6 @@
{
"smithy-rs": [],
"aws-sdk-rust": [
{
"message": "Fix bug where stalled stream protection would panic with an underflow if the first event was logged too soon.",
"meta": {
"bug": true,
"breaking": false,
"tada": false
},
"author": "Velfi",
"references": [
"smithy-rs#3744"
],
"since-commit": "56f4c8e9479792b8b52cc394d563ed49a01d1dcc",
"age": 5
},
{
"message": "`aws_smithy_runtime_api::client::orchestrator::HttpRequest` and `aws_smithy_runtime_api::client::orchestrator::HttpResponse` are now re-exported in AWS SDK clients so that using these types does not require directly depending on `aws-smithy-runtime-api`.",
"meta": {
Expand All @@ -31,7 +17,7 @@
"smithy-rs#3591"
],
"since-commit": "8d23be1392c46a4d59c2910c3dab00ecaad2cf26",
"age": 4
"age": 5
},
{
"message": "Allow [AwsUserAgent](https://docs.rs/aws-runtime/1.3.1/aws_runtime/user_agent/struct.AwsUserAgent.html) to incorporate business metrics, which now deprecates the existing feature and config metadata.\n",
Expand All @@ -45,7 +31,7 @@
"smithy-rs#3781"
],
"since-commit": "433e1a00e2d3eadfde78b472d78b30a8f9204dbe",
"age": 3
"age": 4
},
{
"message": "Fix incorrect redaction of `@sensitive` types in maps and lists.\n",
Expand All @@ -60,7 +46,78 @@
"smithy-rs#3757"
],
"since-commit": "433e1a00e2d3eadfde78b472d78b30a8f9204dbe",
"age": 3
"age": 4
},
{
"message": "Upgrade MSRV to Rust 1.78.0.\n",
"meta": {
"bug": false,
"breaking": true,
"tada": false
},
"author": "ysaito1001",
"references": [
"smithy-rs#3800"
],
"since-commit": "d64aea29ad48d7bddb5a7511f3f1175c478e2c1e",
"age": 1
},
{
"message": "Add minimal support for `AWS::Auth::AccountId` and `AWS::Auth::AccountIdEndpointMode` endpoint built-ins\n",
"meta": {
"bug": false,
"breaking": false,
"tada": false
},
"author": "landonxjames",
"references": [
"smithy-rs#3792"
],
"since-commit": "d64aea29ad48d7bddb5a7511f3f1175c478e2c1e",
"age": 1
},
{
"message": "Fix the execution order of [modify_before_serialization](https://docs.rs/aws-smithy-runtime-api/latest/aws_smithy_runtime_api/client/interceptors/trait.Intercept.html#method.modify_before_serialization) and [read_before_serialization](https://docs.rs/aws-smithy-runtime-api/latest/aws_smithy_runtime_api/client/interceptors/trait.Intercept.html#method.read_before_serialization) in the orchestrator. The `modify_before_serialization` method now executes before the `read_before_serialization` method. This adjustment may result in changes in behavior depending on how you customize interceptors.\n",
"meta": {
"bug": true,
"breaking": false,
"tada": false
},
"author": "ysaito1001",
"references": [
"smithy-rs#3798"
],
"since-commit": "d64aea29ad48d7bddb5a7511f3f1175c478e2c1e",
"age": 1
},
{
"message": "Fix the [Length::UpTo](https://docs.rs/aws-smithy-types/1.2.2/aws_smithy_types/byte_stream/enum.Length.html) usage in [FsBuilder](https://docs.rs/aws-smithy-types/1.2.2/aws_smithy_types/byte_stream/struct.FsBuilder.html), ensuring that the specified length does not exceed the remaining file length.\n",
"meta": {
"bug": true,
"breaking": false,
"tada": false
},
"author": "ysaito1001",
"references": [
"aws-sdk-rust#821",
"smithy-rs#3797"
],
"since-commit": "d64aea29ad48d7bddb5a7511f3f1175c478e2c1e",
"age": 1
},
{
"message": "Re-export `ByteStream`'s `Length` and `FsBuilder`. By making these types available directly within a client crate, customers can use `ByteStream::read_from` without needing to import them separately from the `aws-smithy-types` crate.\n",
"meta": {
"bug": true,
"breaking": false,
"tada": false
},
"author": "ysaito1001",
"references": [
"aws-sdk-rust#820"
],
"since-commit": "d64aea29ad48d7bddb5a7511f3f1175c478e2c1e",
"age": 1
}
],
"aws-sdk-model": []
Expand Down

0 comments on commit 60310ee

Please sign in to comment.