From 09e6e19cfd548c701c8acaf726971ff4138395c7 Mon Sep 17 00:00:00 2001 From: AWS SDK Rust Bot Date: Mon, 3 Jun 2024 21:23:29 +0000 Subject: [PATCH] Update changelog --- CHANGELOG.md | 6 ++++ CHANGELOG.next.toml | 8 +---- aws/SDK_CHANGELOG.next.json | 66 +++++-------------------------------- 3 files changed, 16 insertions(+), 64 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ea568f2bb5..6ae84dc886 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,10 @@ +June 3rd, 2024 +============== +**New this release:** +- (client, [smithy-rs#3664](https://github.com/smithy-lang/smithy-rs/issues/3664)) Reduce verbosity of various debug logs + + May 28th, 2024 ============== diff --git a/CHANGELOG.next.toml b/CHANGELOG.next.toml index 9070a3f613..fc4c4c2578 100644 --- a/CHANGELOG.next.toml +++ b/CHANGELOG.next.toml @@ -9,10 +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" - -[[smithy-rs]] -message = "Reduce verbosity of various debug logs" -references = ["smithy-rs#3664"] -meta = { "breaking" = false, "tada" = false, "bug" = false, "target" = "client"} -author = "landonxjames" +# author = "rcoh" \ No newline at end of file diff --git a/aws/SDK_CHANGELOG.next.json b/aws/SDK_CHANGELOG.next.json index ff2e87aa9a..8a0795e930 100644 --- a/aws/SDK_CHANGELOG.next.json +++ b/aws/SDK_CHANGELOG.next.json @@ -5,54 +5,6 @@ { "smithy-rs": [], "aws-sdk-rust": [ - { - "message": "Added support for waiters. Services that model waiters now have a `Waiters` trait that adds\nsome methods prefixed with `wait_until` to the existing clients. These can be used to, for example\nin S3, wait for a newly created bucket to be ready, or in EC2, to wait for a started instance to\nhave the status OK.\n\nUsing a waiter looks like the following example for EC2:\n```rust\nuse aws_sdk_ec2::client::Waiters;\n\nlet result = ec2_client.wait_until_instance_status_ok()\n .instance_ids(\"some-instance-id\")\n .wait(Duration::from_secs(300))\n .await;\n```\n", - "meta": { - "bug": false, - "breaking": false, - "tada": true - }, - "author": "jdisanti", - "references": [ - "aws-sdk-rust#400", - "smithy-rs#3595", - "smithy-rs#3593", - "smithy-rs#3585", - "smithy-rs#3571", - "smithy-rs#3569" - ], - "since-commit": "d7be22025857da5d21a0a1c8f5753fcf48e8d0ac", - "age": 5 - }, - { - "message": "SDK crates now set the `rust-version` property in their Cargo.toml files to indicate the minimum supported Rust version.", - "meta": { - "bug": false, - "breaking": false, - "tada": true - }, - "author": "jdisanti", - "references": [ - "smithy-rs#3601" - ], - "since-commit": "d7be22025857da5d21a0a1c8f5753fcf48e8d0ac", - "age": 5 - }, - { - "message": "`aws_config::default_provider::use_dual_stack_provider` is now public instead of `pub(crate)`", - "meta": { - "bug": false, - "breaking": false, - "tada": false - }, - "author": "jdisanti", - "references": [ - "aws-sdk-rust#879", - "smithy-rs#3611" - ], - "since-commit": "d7be22025857da5d21a0a1c8f5753fcf48e8d0ac", - "age": 5 - }, { "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": { @@ -65,7 +17,7 @@ "smithy-rs#3427" ], "since-commit": "51429ad43da1b62013535aab643c24530f3e44bd", - "age": 4 + "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.", @@ -79,7 +31,7 @@ "smithy-rs#3527" ], "since-commit": "51429ad43da1b62013535aab643c24530f3e44bd", - "age": 4 + "age": 5 }, { "message": "Fix panics that occurred when `Duration` for exponential backoff could not be created from too big a float.", @@ -93,7 +45,7 @@ "aws-sdk-rust#1133" ], "since-commit": "27b4d14a5102fe1ac928e1e0c647d53597125d51", - "age": 3 + "age": 4 }, { "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.", @@ -107,7 +59,7 @@ "aws-sdk-rust#1079" ], "since-commit": "27b4d14a5102fe1ac928e1e0c647d53597125d51", - "age": 3 + "age": 4 }, { "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.", @@ -126,7 +78,7 @@ "aws-sdk-rust#1148" ], "since-commit": "27b4d14a5102fe1ac928e1e0c647d53597125d51", - "age": 3 + "age": 4 }, { "message": "Updating the documentation for the `app_name` method on `ConfigLoader` to indicate the order of precedence for the sources of the `AppName`.", @@ -140,7 +92,7 @@ "smithy-rs#3645" ], "since-commit": "27b4d14a5102fe1ac928e1e0c647d53597125d51", - "age": 3 + "age": 4 }, { "message": "Update MSRV to `1.76.0`", @@ -154,7 +106,7 @@ "smithy-rs#3653" ], "since-commit": "27b4d14a5102fe1ac928e1e0c647d53597125d51", - "age": 3 + "age": 4 }, { "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", @@ -168,7 +120,7 @@ "smithy-rs#2891" ], "since-commit": "27b4d14a5102fe1ac928e1e0c647d53597125d51", - "age": 3 + "age": 4 }, { "message": "Fix the Content-Length enforcement so it is only applied to GET requests.", @@ -186,7 +138,7 @@ "smithy-rs#3657" ], "since-commit": "db89652d8c11cd2a2da8e887fac8b34393c182fe", - "age": 2 + "age": 3 } ], "aws-sdk-model": []