|
5 | 5 | {
|
6 | 6 | "smithy-rs": [],
|
7 | 7 | "aws-sdk-rust": [
|
8 |
| - { |
9 |
| - "message": "Updates the default HTTP client to be based on the 1.x version of hyper and updates the default TLS provider to [rustls](https://github.com/rustls/rustls) with [aws-lc](https://github.com/aws/aws-lc-rs). For more information see the GitHub [discussion](https://github.com/awslabs/aws-sdk-rust/discussions/1257).\n", |
10 |
| - "meta": { |
11 |
| - "bug": false, |
12 |
| - "breaking": false, |
13 |
| - "tada": false |
14 |
| - }, |
15 |
| - "author": "aajtodd", |
16 |
| - "references": [ |
17 |
| - "aws-sdk-rust#977", |
18 |
| - "smithy-rs#1925", |
19 |
| - "smithy-rs#3710" |
20 |
| - ], |
21 |
| - "since-commit": "bdec1a232a5dfdba16bafd1f637c99a920a30734", |
22 |
| - "age": 5 |
23 |
| - }, |
24 | 8 | {
|
25 | 9 | "message": "Update spans to better align with spec.\n",
|
26 | 10 | "meta": {
|
|
33 | 17 | "smithy-rs#4052"
|
34 | 18 | ],
|
35 | 19 | "since-commit": "7558d31f17b69bce8785ffa833c575d0b172209c",
|
36 |
| - "age": 4 |
| 20 | + "age": 5 |
37 | 21 | },
|
38 | 22 | {
|
39 | 23 | "message": "Replace the `once_cell` crate with the `std` counterpart in AWS runtime crates.\n",
|
|
47 | 31 | "smithy-rs#4050"
|
48 | 32 | ],
|
49 | 33 | "since-commit": "f0c92d92b680771787af8ab60995d0e1fae02611",
|
50 |
| - "age": 2 |
| 34 | + "age": 3 |
51 | 35 | },
|
52 | 36 | {
|
53 | 37 | "message": "Fix an issue where a custom `Content-Encoding` header was incorrectly overwritten by the `aws-chunked` header value.\n",
|
|
61 | 45 | "aws-sdk-rust#1281"
|
62 | 46 | ],
|
63 | 47 | "since-commit": "f0c92d92b680771787af8ab60995d0e1fae02611",
|
64 |
| - "age": 2 |
| 48 | + "age": 3 |
65 | 49 | },
|
66 | 50 | {
|
67 | 51 | "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",
|
|
75 | 59 | "smithy-rs#3776"
|
76 | 60 | ],
|
77 | 61 | "since-commit": "f0c92d92b680771787af8ab60995d0e1fae02611",
|
78 |
| - "age": 2 |
| 62 | + "age": 3 |
79 | 63 | },
|
80 | 64 | {
|
81 | 65 | "message": "Fix service specific endpoint url keys\n",
|
|
89 | 73 | "aws-sdk-rust#1252"
|
90 | 74 | ],
|
91 | 75 | "since-commit": "f0c92d92b680771787af8ab60995d0e1fae02611",
|
92 |
| - "age": 2 |
| 76 | + "age": 3 |
| 77 | + }, |
| 78 | + { |
| 79 | + "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", |
| 80 | + "meta": { |
| 81 | + "bug": true, |
| 82 | + "breaking": false, |
| 83 | + "tada": false |
| 84 | + }, |
| 85 | + "author": "ysaito1001", |
| 86 | + "references": [ |
| 87 | + "smithy-rs#4117" |
| 88 | + ], |
| 89 | + "since-commit": "84f5464aacf3544f706d75af0aaddfea42c20e9f", |
| 90 | + "age": 1 |
| 91 | + }, |
| 92 | + { |
| 93 | + "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", |
| 94 | + "meta": { |
| 95 | + "bug": true, |
| 96 | + "breaking": false, |
| 97 | + "tada": true |
| 98 | + }, |
| 99 | + "author": "aajtodd", |
| 100 | + "references": [ |
| 101 | + "smithy-rs#4074", |
| 102 | + "smithy-rs#3926" |
| 103 | + ], |
| 104 | + "since-commit": "84f5464aacf3544f706d75af0aaddfea42c20e9f", |
| 105 | + "age": 1 |
| 106 | + }, |
| 107 | + { |
| 108 | + "message": "Update MSRV to 1.82.0\n", |
| 109 | + "meta": { |
| 110 | + "bug": false, |
| 111 | + "breaking": true, |
| 112 | + "tada": false |
| 113 | + }, |
| 114 | + "author": "ysaito1001", |
| 115 | + "references": [ |
| 116 | + "smithy-rs#4120" |
| 117 | + ], |
| 118 | + "since-commit": "84f5464aacf3544f706d75af0aaddfea42c20e9f", |
| 119 | + "age": 1 |
93 | 120 | }
|
94 | 121 | ],
|
95 | 122 | "aws-sdk-model": []
|
|
0 commit comments