|
5 | 5 | {
|
6 | 6 | "smithy-rs": [],
|
7 | 7 | "aws-sdk-rust": [
|
8 |
| - { |
9 |
| - "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", |
10 |
| - "meta": { |
11 |
| - "bug": true, |
12 |
| - "breaking": false, |
13 |
| - "tada": false |
14 |
| - }, |
15 |
| - "author": "landonxjames", |
16 |
| - "references": [ |
17 |
| - "aws-sdk-rust#1291" |
18 |
| - ], |
19 |
| - "since-commit": "4e4a0ee2d663a1212927a8a70ca97eac567d54b6", |
20 |
| - "age": 5 |
21 |
| - }, |
22 |
| - { |
23 |
| - "message": "fix simple rules behavior with `RuleMode::MatchAny`\n", |
24 |
| - "meta": { |
25 |
| - "bug": true, |
26 |
| - "breaking": false, |
27 |
| - "tada": false |
28 |
| - }, |
29 |
| - "author": "aajtodd", |
30 |
| - "references": [ |
31 |
| - "smithy-rs#4135" |
32 |
| - ], |
33 |
| - "since-commit": "4e4a0ee2d663a1212927a8a70ca97eac567d54b6", |
34 |
| - "age": 5 |
35 |
| - }, |
36 |
| - { |
37 |
| - "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", |
38 |
| - "meta": { |
39 |
| - "bug": false, |
40 |
| - "breaking": false, |
41 |
| - "tada": true |
42 |
| - }, |
43 |
| - "author": "aajtodd", |
44 |
| - "references": [ |
45 |
| - "smithy-rs#4135" |
46 |
| - ], |
47 |
| - "since-commit": "4e4a0ee2d663a1212927a8a70ca97eac567d54b6", |
48 |
| - "age": 5 |
49 |
| - }, |
50 | 8 | {
|
51 | 9 | "message": "Fix h2 GoAway errors not being retried by hyper legacy client\n",
|
52 | 10 | "meta": {
|
|
59 | 17 | "aws-sdk-rust#1272"
|
60 | 18 | ],
|
61 | 19 | "since-commit": "7d64b2f9e8fc89159d7fb1ff1309d6d6b8b53189",
|
62 |
| - "age": 4 |
| 20 | + "age": 5 |
63 | 21 | },
|
64 | 22 | {
|
65 | 23 | "message": "Fix default supported protocols incorrectly ordered in `ClientProtocolLoader`.\n",
|
|
73 | 31 | "smithy-rs#4165"
|
74 | 32 | ],
|
75 | 33 | "since-commit": "c624a84d9ecc451854521e363e34cf6f1c10e009",
|
76 |
| - "age": 3 |
| 34 | + "age": 4 |
77 | 35 | },
|
78 | 36 | {
|
79 | 37 | "message": "Add support for fetching account ID from IMDS credentials on EC2.\n",
|
|
87 | 45 | "smithy-rs#4109"
|
88 | 46 | ],
|
89 | 47 | "since-commit": "c624a84d9ecc451854521e363e34cf6f1c10e009",
|
90 |
| - "age": 3 |
| 48 | + "age": 4 |
91 | 49 | },
|
92 | 50 | {
|
93 | 51 | "message": "Temporarily disable fetching account ID from IMDS credentials on EC2.\n",
|
|
101 | 59 | "smithy-rs#4187"
|
102 | 60 | ],
|
103 | 61 | "since-commit": "dd10f0602682dfabafc465dbcd9eb92d3d915c51",
|
104 |
| - "age": 2 |
| 62 | + "age": 3 |
105 | 63 | },
|
106 | 64 | {
|
107 | 65 | "message": "Fix hyper 1.x connection refused errors not marked as retryable\n",
|
|
113 | 71 | "author": "aajtodd",
|
114 | 72 | "references": [],
|
115 | 73 | "since-commit": "dd10f0602682dfabafc465dbcd9eb92d3d915c51",
|
116 |
| - "age": 2 |
| 74 | + "age": 3 |
117 | 75 | },
|
118 | 76 | {
|
119 | 77 | "message": "Make Rpc V2 CBOR a compatible protocol for `awsQuery` using `awsQueryCompatible` trait\n",
|
|
127 | 85 | "smithy-rs#4186"
|
128 | 86 | ],
|
129 | 87 | "since-commit": "dd10f0602682dfabafc465dbcd9eb92d3d915c51",
|
130 |
| - "age": 2 |
| 88 | + "age": 3 |
| 89 | + }, |
| 90 | + { |
| 91 | + "message": "Allows customers to configure the auth schemes and auth scheme resolver. For more information see the GitHub [discussion](https://github.com/smithy-lang/smithy-rs/discussions/4197).\n", |
| 92 | + "meta": { |
| 93 | + "bug": false, |
| 94 | + "breaking": false, |
| 95 | + "tada": false |
| 96 | + }, |
| 97 | + "author": "ysaito1001", |
| 98 | + "references": [ |
| 99 | + "smithy-rs#4076", |
| 100 | + "smithy-rs#4198" |
| 101 | + ], |
| 102 | + "since-commit": "ccf374dddc0690ef8aca1ed006b9e9b21299558e", |
| 103 | + "age": 1 |
131 | 104 | }
|
132 | 105 | ],
|
133 | 106 | "aws-sdk-model": []
|
|
0 commit comments