|
5 | 5 | { |
6 | 6 | "smithy-rs": [], |
7 | 7 | "aws-sdk-rust": [ |
8 | | - { |
9 | | - "message": "Add fallback equality on no auth `AuthSchemeId` for backward compatibility, treating `AuthSchemeId::from(\"no_auth\")` (legacy) and `AuthSchemeId::from(\"noAuth\")` (updated) as equivalent.\n", |
10 | | - "meta": { |
11 | | - "bug": true, |
12 | | - "breaking": false, |
13 | | - "tada": false |
14 | | - }, |
15 | | - "author": "ysaito1001", |
16 | | - "references": [ |
17 | | - "smithy-rs#4232" |
18 | | - ], |
19 | | - "since-commit": "a2a7d7aa371ed8d9af191f4220b6c8ddebcb2ce0", |
20 | | - "age": 5 |
21 | | - }, |
22 | 8 | { |
23 | 9 | "message": "Fix canonical request sort order\n", |
24 | 10 | "meta": { |
|
31 | 17 | "smithy-rs#4227" |
32 | 18 | ], |
33 | 19 | "since-commit": "ca76037be5edef991257dc7d1d8425c859468d5a", |
34 | | - "age": 4 |
| 20 | + "age": 5 |
35 | 21 | }, |
36 | 22 | { |
37 | 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", |
|
45 | 31 | "smithy-rs#4241" |
46 | 32 | ], |
47 | 33 | "since-commit": "ca76037be5edef991257dc7d1d8425c859468d5a", |
48 | | - "age": 4 |
| 34 | + "age": 5 |
49 | 35 | }, |
50 | 36 | { |
51 | 37 | "message": "Add user-agent feature tracking for credential providers in `aws-config`.\n", |
|
59 | 45 | "smithy-rs#4238" |
60 | 46 | ], |
61 | 47 | "since-commit": "ca76037be5edef991257dc7d1d8425c859468d5a", |
62 | | - "age": 4 |
| 48 | + "age": 5 |
63 | 49 | }, |
64 | 50 | { |
65 | 51 | "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", |
|
73 | 59 | "smithy-rs#4208" |
74 | 60 | ], |
75 | 61 | "since-commit": "fd54b8282920c862db4604f620ab188ec4a235b9", |
76 | | - "age": 3 |
| 62 | + "age": 4 |
77 | 63 | }, |
78 | 64 | { |
79 | 65 | "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", |
|
87 | 73 | "smithy-rs#4208" |
88 | 74 | ], |
89 | 75 | "since-commit": "fd54b8282920c862db4604f620ab188ec4a235b9", |
90 | | - "age": 3 |
| 76 | + "age": 4 |
91 | 77 | }, |
92 | 78 | { |
93 | 79 | "message": "pin crc-fast to <1.4 to workaround SIGILL\n", |
|
99 | 85 | "author": "aajtodd", |
100 | 86 | "references": [], |
101 | 87 | "since-commit": "01aece8b664968ac63354e52b88915e8f8546738", |
102 | | - "age": 2 |
| 88 | + "age": 3 |
103 | 89 | }, |
104 | 90 | { |
105 | 91 | "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", |
|
113 | 99 | "aws-sdk-rust#169" |
114 | 100 | ], |
115 | 101 | "since-commit": "520d073c2d739e95d112842be13c924097155d47", |
116 | | - "age": 1 |
| 102 | + "age": 2 |
117 | 103 | }, |
118 | 104 | { |
119 | 105 | "message": "Enable rustls post-quantum by default.\n", |
|
125 | 111 | "author": "WillChilds-Klein", |
126 | 112 | "references": [], |
127 | 113 | "since-commit": "520d073c2d739e95d112842be13c924097155d47", |
128 | | - "age": 1 |
| 114 | + "age": 2 |
129 | 115 | }, |
130 | 116 | { |
131 | 117 | "message": "fix `aws-smithy-eventstream` feature `derive-arbitrary` on `arbitrary` >= 1.4.2\n", |
|
137 | 123 | "author": "aajtodd", |
138 | 124 | "references": [], |
139 | 125 | "since-commit": "520d073c2d739e95d112842be13c924097155d47", |
| 126 | + "age": 2 |
| 127 | + }, |
| 128 | + { |
| 129 | + "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", |
| 130 | + "meta": { |
| 131 | + "bug": false, |
| 132 | + "breaking": false, |
| 133 | + "tada": false |
| 134 | + }, |
| 135 | + "author": "ysaito1001", |
| 136 | + "references": [ |
| 137 | + "smithy-rs#4263" |
| 138 | + ], |
| 139 | + "since-commit": "f18c70d36c40fa0f40860547394c134566704e69", |
140 | 140 | "age": 1 |
141 | 141 | } |
142 | 142 | ], |
|
0 commit comments