Skip to content

Commit

Permalink
Update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
aws-sdk-rust-ci committed Jun 10, 2024
1 parent 052b4da commit 6df3f4c
Show file tree
Hide file tree
Showing 3 changed files with 48 additions and 66 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@
<!-- Do not manually edit this file. Use the `changelogger` tool. -->
June 10th, 2024
===============
**New this release:**
- (all, [smithy-rs#1925](https://github.com/smithy-lang/smithy-rs/issues/1925), [smithy-rs#3673](https://github.com/smithy-lang/smithy-rs/issues/3673)) Add support for v1 `http_body::Body` to `aws_smithy_types::byte_stream::bytestream_util::PathBody`.
- :bug: (client, [smithy-rs#3675](https://github.com/smithy-lang/smithy-rs/issues/3675), @dastrom) Enable aws-smithy-runtime to compile in rustc 1.72.1

**Contributors**
Thank you for your contributions! ❤
- @dastrom ([smithy-rs#3675](https://github.com/smithy-lang/smithy-rs/issues/3675))


June 3rd, 2024
==============
**New this release:**
Expand Down
32 changes: 1 addition & 31 deletions CHANGELOG.next.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,34 +9,4 @@
# message = "Fix typos in module documentation for generated crates"
# references = ["smithy-rs#920"]
# meta = { "breaking" = false, "tada" = false, "bug" = false, "target" = "client | server | all"}
# author = "rcoh"

[[aws-sdk-rust]]
message = "Add support for v1 `http_body::Body` to `aws_smithy_types::byte_stream::bytestream_util::PathBody`."
references = ["smithy-rs#1925", "smithy-rs#3673"]
meta = { "breaking" = false, "tada" = false, "bug" = false }
author = "Velfi"

[[smithy-rs]]
message = "Add support for v1 `http_body::Body` to `aws_smithy_types::byte_stream::bytestream_util::PathBody`."
references = ["smithy-rs#1925", "smithy-rs#3673"]
meta = { "breaking" = false, "tada" = false, "bug" = false, "target" = "all"}
author = "Velfi"

[[smithy-rs]]
message = "Enable aws-smithy-runtime to compile in rustc 1.72.1"
references = ["smithy-rs#3675"]
meta = { "breaking" = false, "tada" = false, "bug" = true, "target" = "client" }
author = "dastrom"

[[aws-sdk-rust]]
message = "Fix S3 ListParts API paginator infinite loop."
references = ["aws-sdk-rust#1143"]
meta = { "breaking" = false, "tada" = false, "bug" = true }
author = "landonxjames"

[[aws-smithy-runtime-api]]
message = "Add conversions from smithy StatusCode to http StatusCode."
references = ["smithy-rs#3637"]
meta = { "breaking" = false, "tada" = false, "bug" = false, "target" = "all"}
author = "khuey"
# author = "rcoh"
71 changes: 36 additions & 35 deletions aws/SDK_CHANGELOG.next.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,34 +5,6 @@
{
"smithy-rs": [],
"aws-sdk-rust": [
{
"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",
"meta": {
"bug": false,
"breaking": false,
"tada": true
},
"author": "aajtodd",
"references": [
"smithy-rs#3427"
],
"since-commit": "51429ad43da1b62013535aab643c24530f3e44bd",
"age": 5
},
{
"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.",
"meta": {
"bug": false,
"breaking": true,
"tada": true
},
"author": "jdisanti",
"references": [
"smithy-rs#3527"
],
"since-commit": "51429ad43da1b62013535aab643c24530f3e44bd",
"age": 5
},
{
"message": "Fix panics that occurred when `Duration` for exponential backoff could not be created from too big a float.",
"meta": {
Expand All @@ -45,7 +17,7 @@
"aws-sdk-rust#1133"
],
"since-commit": "27b4d14a5102fe1ac928e1e0c647d53597125d51",
"age": 4
"age": 5
},
{
"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.",
Expand All @@ -59,7 +31,7 @@
"aws-sdk-rust#1079"
],
"since-commit": "27b4d14a5102fe1ac928e1e0c647d53597125d51",
"age": 4
"age": 5
},
{
"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.",
Expand All @@ -78,7 +50,7 @@
"aws-sdk-rust#1148"
],
"since-commit": "27b4d14a5102fe1ac928e1e0c647d53597125d51",
"age": 4
"age": 5
},
{
"message": "Updating the documentation for the `app_name` method on `ConfigLoader` to indicate the order of precedence for the sources of the `AppName`.",
Expand All @@ -92,7 +64,7 @@
"smithy-rs#3645"
],
"since-commit": "27b4d14a5102fe1ac928e1e0c647d53597125d51",
"age": 4
"age": 5
},
{
"message": "Update MSRV to `1.76.0`",
Expand All @@ -106,7 +78,7 @@
"smithy-rs#3653"
],
"since-commit": "27b4d14a5102fe1ac928e1e0c647d53597125d51",
"age": 4
"age": 5
},
{
"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",
Expand All @@ -120,7 +92,7 @@
"smithy-rs#2891"
],
"since-commit": "27b4d14a5102fe1ac928e1e0c647d53597125d51",
"age": 4
"age": 5
},
{
"message": "Fix the Content-Length enforcement so it is only applied to GET requests.",
Expand All @@ -138,7 +110,36 @@
"smithy-rs#3657"
],
"since-commit": "db89652d8c11cd2a2da8e887fac8b34393c182fe",
"age": 3
"age": 4
},
{
"message": "Add support for v1 `http_body::Body` to `aws_smithy_types::byte_stream::bytestream_util::PathBody`.",
"meta": {
"bug": false,
"breaking": false,
"tada": false
},
"author": "Velfi",
"references": [
"smithy-rs#1925",
"smithy-rs#3673"
],
"since-commit": "052b4dadc06354e673f6a642487871d5f50d135a",
"age": 1
},
{
"message": "Fix S3 ListParts API paginator infinite loop.",
"meta": {
"bug": true,
"breaking": false,
"tada": false
},
"author": "landonxjames",
"references": [
"aws-sdk-rust#1143"
],
"since-commit": "052b4dadc06354e673f6a642487871d5f50d135a",
"age": 1
}
],
"aws-sdk-model": []
Expand Down

0 comments on commit 6df3f4c

Please sign in to comment.