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