|
5 | 5 | {
|
6 | 6 | "smithy-rs": [],
|
7 | 7 | "aws-sdk-rust": [
|
8 |
| - { |
9 |
| - "message": "Update spans to better align with spec.\n", |
10 |
| - "meta": { |
11 |
| - "bug": false, |
12 |
| - "breaking": false, |
13 |
| - "tada": false |
14 |
| - }, |
15 |
| - "author": "landonxjames", |
16 |
| - "references": [ |
17 |
| - "smithy-rs#4052" |
18 |
| - ], |
19 |
| - "since-commit": "7558d31f17b69bce8785ffa833c575d0b172209c", |
20 |
| - "age": 5 |
21 |
| - }, |
22 | 8 | {
|
23 | 9 | "message": "Replace the `once_cell` crate with the `std` counterpart in AWS runtime crates.\n",
|
24 | 10 | "meta": {
|
|
31 | 17 | "smithy-rs#4050"
|
32 | 18 | ],
|
33 | 19 | "since-commit": "f0c92d92b680771787af8ab60995d0e1fae02611",
|
34 |
| - "age": 3 |
| 20 | + "age": 5 |
35 | 21 | },
|
36 | 22 | {
|
37 | 23 | "message": "Fix an issue where a custom `Content-Encoding` header was incorrectly overwritten by the `aws-chunked` header value.\n",
|
|
45 | 31 | "aws-sdk-rust#1281"
|
46 | 32 | ],
|
47 | 33 | "since-commit": "f0c92d92b680771787af8ab60995d0e1fae02611",
|
48 |
| - "age": 3 |
| 34 | + "age": 5 |
49 | 35 | },
|
50 | 36 | {
|
51 | 37 | "message": "Add support for the account-based endpoints in AWS SDKs. For more details, please refer to the [AWS SDKs and Tools Reference Guide on Account-Based Endpoints](https://docs.aws.amazon.com/sdkref/latest/guide/feature-account-endpoints.html).\n",
|
|
59 | 45 | "smithy-rs#3776"
|
60 | 46 | ],
|
61 | 47 | "since-commit": "f0c92d92b680771787af8ab60995d0e1fae02611",
|
62 |
| - "age": 3 |
| 48 | + "age": 5 |
63 | 49 | },
|
64 | 50 | {
|
65 | 51 | "message": "Fix service specific endpoint url keys\n",
|
|
73 | 59 | "aws-sdk-rust#1252"
|
74 | 60 | ],
|
75 | 61 | "since-commit": "f0c92d92b680771787af8ab60995d0e1fae02611",
|
76 |
| - "age": 3 |
| 62 | + "age": 5 |
77 | 63 | },
|
78 | 64 | {
|
79 | 65 | "message": "Fix a bug where fields that were initially annotated with the `required` trait and later updated to use the `addedDefault` trait were not serialized when their values matched the default, even when the values were explicitly set. With this fix, fields with `addedDefault` are now always serialized.\n",
|
|
87 | 73 | "smithy-rs#4117"
|
88 | 74 | ],
|
89 | 75 | "since-commit": "84f5464aacf3544f706d75af0aaddfea42c20e9f",
|
90 |
| - "age": 1 |
| 76 | + "age": 3 |
91 | 77 | },
|
92 | 78 | {
|
93 | 79 | "message": "Promote `aws-smithy-mocks-experimental` to `aws-smithy-mocks`. This crate is now a recommended tool for testing\ngenerated SDK clients. This release includes several fixes as well as a new sequence builder API that can be\nused to test more complex scenarios such as retries.\n\n```rust\nuse aws_sdk_s3::operation::get_object::GetObjectOutput;\nuse aws_sdk_s3::config::retry::RetryConfig;\nuse aws_smithy_types::byte_stream::ByteStream;\nuse aws_smithy_mocks::{mock, mock_client, RuleMode};\n\n#[tokio::test]\nasync fn test_retry_behavior() {\n // Create a rule that returns 503 twice, then succeeds\n let retry_rule = mock!(aws_sdk_s3::Client::get_object)\n .sequence()\n .http_status(503, None)\n .times(2) // Return 503 HTTP status twice\n .output(|| GetObjectOutput::builder() // Finally return a successful output\n .body(ByteStream::from_static(b\"success\"))\n .build())\n .build();\n\n // Create a mocked client with the rule\n let s3 = mock_client!(\n aws_sdk_s3,\n RuleMode::Sequential,\n [&retry_rule],\n |client_builder| {\n client_builder.retry_config(RetryConfig::standard().with_max_attempts(3))\n }\n );\n\n // This should succeed after two retries\n let result = s3\n .get_object()\n .bucket(\"test-bucket\")\n .key(\"test-key\")\n .send()\n .await\n .expect(\"success after retries\");\n\n // Verify the response\n let data = result.body.collect().await.expect(\"successful read\").to_vec();\n assert_eq!(data, b\"success\");\n\n // Verify all responses were used\n assert_eq!(retry_rule.num_calls(), 3);\n}\n```\n",
|
|
102 | 88 | "smithy-rs#3926"
|
103 | 89 | ],
|
104 | 90 | "since-commit": "84f5464aacf3544f706d75af0aaddfea42c20e9f",
|
105 |
| - "age": 1 |
| 91 | + "age": 3 |
106 | 92 | },
|
107 | 93 | {
|
108 | 94 | "message": "Update MSRV to 1.82.0\n",
|
|
116 | 102 | "smithy-rs#4120"
|
117 | 103 | ],
|
118 | 104 | "since-commit": "84f5464aacf3544f706d75af0aaddfea42c20e9f",
|
| 105 | + "age": 3 |
| 106 | + }, |
| 107 | + { |
| 108 | + "message": "Replace once_cell with std equivalents\n", |
| 109 | + "meta": { |
| 110 | + "bug": false, |
| 111 | + "breaking": false, |
| 112 | + "tada": false |
| 113 | + }, |
| 114 | + "author": "FalkWoldmann", |
| 115 | + "references": [ |
| 116 | + "smithy-rs#4105" |
| 117 | + ], |
| 118 | + "since-commit": "f3aebe7b53d7e1be4bd922e13d459f8ef72104fa", |
| 119 | + "age": 2 |
| 120 | + }, |
| 121 | + { |
| 122 | + "message": "Removing the `optimize_crc32_auto` feature flag from the `crc-fast` dependency of the `aws-smithy-checksums` crate since it was causing build issues for some customers.\n", |
| 123 | + "meta": { |
| 124 | + "bug": true, |
| 125 | + "breaking": false, |
| 126 | + "tada": false |
| 127 | + }, |
| 128 | + "author": "landonxjames", |
| 129 | + "references": [ |
| 130 | + "aws-sdk-rust#1291" |
| 131 | + ], |
| 132 | + "since-commit": "4e4a0ee2d663a1212927a8a70ca97eac567d54b6", |
| 133 | + "age": 1 |
| 134 | + }, |
| 135 | + { |
| 136 | + "message": "fix simple rules behavior with `RuleMode::MatchAny`\n", |
| 137 | + "meta": { |
| 138 | + "bug": true, |
| 139 | + "breaking": false, |
| 140 | + "tada": false |
| 141 | + }, |
| 142 | + "author": "aajtodd", |
| 143 | + "references": [ |
| 144 | + "smithy-rs#4135" |
| 145 | + ], |
| 146 | + "since-commit": "4e4a0ee2d663a1212927a8a70ca97eac567d54b6", |
| 147 | + "age": 1 |
| 148 | + }, |
| 149 | + { |
| 150 | + "message": "Introduce a new `repeatedly()` function to `aws-smithy-mocks` sequence builder to build mock rules that behave as an\ninfinite sequence.\n\n```rust\nlet rule = mock!(aws_sdk_s3::Client::get_object)\n .sequence()\n .http_status(503, None)\n .times(2) // repeat the last output twice before moving onto the next response in the sequence\n .output(|| GetObjectOutput::builder()\n .body(ByteStream::from_static(b\"success\"))\n .build()\n )\n .repeatedly() // repeat the last output forever\n .build();\n```\n", |
| 151 | + "meta": { |
| 152 | + "bug": false, |
| 153 | + "breaking": false, |
| 154 | + "tada": true |
| 155 | + }, |
| 156 | + "author": "aajtodd", |
| 157 | + "references": [ |
| 158 | + "smithy-rs#4135" |
| 159 | + ], |
| 160 | + "since-commit": "4e4a0ee2d663a1212927a8a70ca97eac567d54b6", |
119 | 161 | "age": 1
|
120 | 162 | }
|
121 | 163 | ],
|
|
0 commit comments