Skip to content

Commit 6057f06

Browse files
Merge smithy-rs-release-1.x.y into main (#4295)
2 parents 08f6a8f + 441e42c commit 6057f06

File tree

3 files changed

+13
-58
lines changed

3 files changed

+13
-58
lines changed

.changelog/dns-clone.md

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

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
<!-- Do not manually edit this file. Use the `changelogger` tool. -->
2+
September 10th, 2025
3+
====================
4+
**New this release:**
5+
- :bug: (client, [smithy-rs#4274](https://github.com/smithy-lang/smithy-rs/issues/4274)) The `HickoryDnsResolver` and `TokioDnsResolver` were not `Clone` making it impossible to use them in the http_client builder's `build_with_resolver` method.
6+
7+
28
August 28th, 2025
39
=================
410
**New this release:**

aws/SDK_CHANGELOG.next.json

Lines changed: 7 additions & 49 deletions
Original file line numberDiff line numberDiff line change
@@ -5,48 +5,6 @@
55
{
66
"smithy-rs": [],
77
"aws-sdk-rust": [
8-
{
9-
"message": "Fix canonical request sort order\n",
10-
"meta": {
11-
"bug": true,
12-
"breaking": false,
13-
"tada": false
14-
},
15-
"author": "aajtodd",
16-
"references": [
17-
"smithy-rs#4227"
18-
],
19-
"since-commit": "ca76037be5edef991257dc7d1d8425c859468d5a",
20-
"age": 5
21-
},
22-
{
23-
"message": "Add support for environment token provider for AWS services whose SigV4 service signing name matches `bedrock`. Setting this environment variable, `AWS_BEARER_TOKEN_BEDROCK`, allows SDKs to prefer the `httpBearerAuth` auth scheme and to retrieve a Token value from the said environment. Customers would use the environment variable as follows:\n```\n// export AWS_BEARER_TOKEN_BEDROCK=my-token\nlet sdk_config = aws_config::defaults(BehaviorVersion::latest()).load().await;\nlet bedrock_client = aws_sdk_bedrock::Client::new(&sdk_config);\n// call an operation on `bedrock_client`...\n```\nUnder the hood, this is equivalent roughly to\n```\nlet sdk_config = aws_config::defaults(BehaviorVersion::latest()).load().await;\nlet bedrock_config = aws_sdk_bedrock::config::Builder::from(sdk_config)\n .auth_scheme_preference([HTTP_BEARER_AUTH_SCHEME_ID])\n .token_provider(Token::new(\"my-token\", None))\n .build();\nlet bedrock_client = aws_sdk_bedrock::Client::from_conf(bedrock_config);\n// call an operation on `bedrock_client`...\n```\nHowever, note that if customers create the service client directly from the service config builder, the environment variable will not be applied:\n```\n// export AWS_BEARER_TOKEN_BEDROCK=my-token\nlet bedrock_config = aws_sdk_bedrock::Config::builder()\n // other configurations\n .build();\nlet bedrock_client = aws_sdk_bedrock::Client::from_conf(bedrock_config);\n// `bedrock_client` neither prefers HTTP_BEARER_AUTH_SCHEME_ID nor sets a Token with my-token.\n```\n",
24-
"meta": {
25-
"bug": false,
26-
"breaking": false,
27-
"tada": true
28-
},
29-
"author": "ysaito1001",
30-
"references": [
31-
"smithy-rs#4241"
32-
],
33-
"since-commit": "ca76037be5edef991257dc7d1d8425c859468d5a",
34-
"age": 5
35-
},
36-
{
37-
"message": "Add user-agent feature tracking for credential providers in `aws-config`.\n",
38-
"meta": {
39-
"bug": false,
40-
"breaking": false,
41-
"tada": true
42-
},
43-
"author": "landonxjames",
44-
"references": [
45-
"smithy-rs#4238"
46-
],
47-
"since-commit": "ca76037be5edef991257dc7d1d8425c859468d5a",
48-
"age": 5
49-
},
508
{
519
"message": "Add the ability to insert `hints.mostly-unused = true` in Cargo.toml. Enable this hint for the below crates:\n- aws-sdk-cloudformation\n- aws-sdk-dynamodb\n- aws-sdk-ec2\n- aws-sdk-s3\n- aws-sdk-sns\n- aws-sdk-sqs\n- aws-sdk-ssm\n- aws-sdk-sts\n\nSee more information about this hint at https://blog.rust-lang.org/inside-rust/2025/07/15/call-for-testing-hint-mostly-unused/\n",
5210
"meta": {
@@ -59,7 +17,7 @@
5917
"smithy-rs#4208"
6018
],
6119
"since-commit": "fd54b8282920c862db4604f620ab188ec4a235b9",
62-
"age": 4
20+
"age": 5
6321
},
6422
{
6523
"message": "Enable `hints.mostly-unused = true` for `aws-sdk-lambda` (taking a release\nbuild from 57s to 40s) and `aws-sdk-rds` (taking a release build from 1m34s to\n49s).\n",
@@ -73,7 +31,7 @@
7331
"smithy-rs#4208"
7432
],
7533
"since-commit": "fd54b8282920c862db4604f620ab188ec4a235b9",
76-
"age": 4
34+
"age": 5
7735
},
7836
{
7937
"message": "pin crc-fast to <1.4 to workaround SIGILL\n",
@@ -85,7 +43,7 @@
8543
"author": "aajtodd",
8644
"references": [],
8745
"since-commit": "01aece8b664968ac63354e52b88915e8f8546738",
88-
"age": 3
46+
"age": 4
8947
},
9048
{
9149
"message": "Add support for proxy environment variables (`HTTP_PROXY, `HTTPS_PROXY`, `ALL_PROXY`, `NO_PROXY`). Service clients will now automatically respect these proxy environment variables on the latest `BehaviorVersion`. Older behavior versions do not automatically detect these environment variables and will require manually building a `aws_smithy_http_client::Connector` with a proxy config explicitly set to use this feature.\n",
@@ -99,7 +57,7 @@
9957
"aws-sdk-rust#169"
10058
],
10159
"since-commit": "520d073c2d739e95d112842be13c924097155d47",
102-
"age": 2
60+
"age": 3
10361
},
10462
{
10563
"message": "Enable rustls post-quantum by default.\n",
@@ -111,7 +69,7 @@
11169
"author": "WillChilds-Klein",
11270
"references": [],
11371
"since-commit": "520d073c2d739e95d112842be13c924097155d47",
114-
"age": 2
72+
"age": 3
11573
},
11674
{
11775
"message": "fix `aws-smithy-eventstream` feature `derive-arbitrary` on `arbitrary` >= 1.4.2\n",
@@ -123,7 +81,7 @@
12381
"author": "aajtodd",
12482
"references": [],
12583
"since-commit": "520d073c2d739e95d112842be13c924097155d47",
126-
"age": 2
84+
"age": 3
12785
},
12886
{
12987
"message": "Make [`TokenBucket`](https://docs.rs/aws-smithy-runtime/latest/aws_smithy_runtime/client/retries/struct.TokenBucket.html) and [`ClientRateLimiter`](https://docs.rs/aws-smithy-runtime/latest/aws_smithy_runtime/client/retries/struct.ClientRateLimiter.html) configurable through [`RetryPartition`](https://docs.rs/aws-smithy-runtime/latest/aws_smithy_runtime/client/retries/struct.RetryPartition.html).\n",
@@ -137,7 +95,7 @@
13795
"smithy-rs#4263"
13896
],
13997
"since-commit": "f18c70d36c40fa0f40860547394c134566704e69",
140-
"age": 1
98+
"age": 2
14199
}
142100
],
143101
"aws-sdk-model": []

0 commit comments

Comments
 (0)