Skip to content

Commit cb227b5

Browse files
Update changelog
1 parent 88970ba commit cb227b5

File tree

3 files changed

+45
-70
lines changed

3 files changed

+45
-70
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
<!-- Do not manually edit this file. Use the `changelogger` tool. -->
2+
November 27th, 2023
3+
===================
4+
**New this release:**
5+
- (client, [aws-sdk-rust#738](https://github.com/awslabs/aws-sdk-rust/issues/738), [aws-sdk-rust#858](https://github.com/awslabs/aws-sdk-rust/issues/858)) Retry additional classes of H2 errors (H2 GoAway & H2 ResetStream)
6+
7+
28
November 26th, 2023
39
===================
410

CHANGELOG.next.toml

Lines changed: 1 addition & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -9,22 +9,4 @@
99
# message = "Fix typos in module documentation for generated crates"
1010
# references = ["smithy-rs#920"]
1111
# meta = { "breaking" = false, "tada" = false, "bug" = false, "target" = "client | server | all"}
12-
# author = "rcoh"
13-
14-
[[smithy-rs]]
15-
message = "Retry additional classes of H2 errors (H2 GoAway & H2 ResetStream)"
16-
references = ["aws-sdk-rust#738", "aws-sdk-rust#858"]
17-
meta = { "breaking" = false, "tada" = false, "bug" = false, "target" = "client" }
18-
author = "rcoh"
19-
20-
[[aws-sdk-rust]]
21-
message = "Retry additional classes of H2 errors (H2 GoAway & H2 ResetStream)"
22-
references = ["aws-sdk-rust#738", "aws-sdk-rust#858"]
23-
meta = { "breaking" = false, "tada" = false, "bug" = false }
24-
author = "rcoh"
25-
26-
[[aws-sdk-rust]]
27-
message = "Make some properties for IoT types optional. Previously, they defaulted to false, but that isn't how the service actual works."
28-
references = ["smithy-rs#3256"]
29-
meta = { "breaking" = true, "tada" = false, "bug" = true }
30-
author = "milesziemer"
12+
# author = "rcoh"

aws/SDK_CHANGELOG.next.json

Lines changed: 38 additions & 51 deletions
Original file line numberDiff line numberDiff line change
@@ -5,48 +5,6 @@
55
{
66
"smithy-rs": [],
77
"aws-sdk-rust": [
8-
{
9-
"message": "imds::client::Builder::endpoint has been updated to accept a string instead of a URI. The method now returns a result instead.",
10-
"meta": {
11-
"bug": false,
12-
"breaking": true,
13-
"tada": false
14-
},
15-
"author": "rcoh",
16-
"references": [
17-
"smithy-rs#3205"
18-
],
19-
"since-commit": "681bf77733a242e01458e87381a0700616c918da",
20-
"age": 5
21-
},
22-
{
23-
"message": "The `AssumeRoleBuilder::policy_arns` now accepts strings instead of an STS specific type",
24-
"meta": {
25-
"bug": false,
26-
"breaking": true,
27-
"tada": false
28-
},
29-
"author": "rcoh",
30-
"references": [
31-
"smithy-rs#3205"
32-
],
33-
"since-commit": "681bf77733a242e01458e87381a0700616c918da",
34-
"age": 5
35-
},
36-
{
37-
"message": "Fix optional types in S3. Many types in S3 were modeled as non-optional but this causes serialization issues.",
38-
"meta": {
39-
"bug": false,
40-
"breaking": true,
41-
"tada": false
42-
},
43-
"author": "rcoh",
44-
"references": [
45-
"smithy-rs#3213"
46-
],
47-
"since-commit": "681bf77733a242e01458e87381a0700616c918da",
48-
"age": 5
49-
},
508
{
519
"message": "Add configurable stalled-stream protection for downloads.\n\nWhen making HTTP calls,\nit's possible for a connection to 'stall out' and emit no more data due to server-side issues.\nIn the event this happens, it's desirable for the stream to error out as quickly as possible.\nWhile timeouts can protect you from this issue, they aren't adaptive to the amount of data\nbeing sent and so must be configured specifically for each use case. When enabled, stalled-stream\nprotection will ensure that bad streams error out quickly, regardless of the amount of data being\ndownloaded.\n\nProtection is enabled by default for all clients but can be configured or disabled.\nSee [this discussion](https://github.com/awslabs/aws-sdk-rust/discussions/956) for more details.\n",
5210
"meta": {
@@ -59,7 +17,7 @@
5917
"smithy-rs#3202"
6018
],
6119
"since-commit": "f66f9246bccc376462ef47aec5707569fca214f5",
62-
"age": 4
20+
"age": 5
6321
},
6422
{
6523
"message": "Make certain types for EMR Serverless optional. Previously, they defaulted to 0, but this created invalid requests.",
@@ -73,7 +31,7 @@
7331
"smithy-rs#3217"
7432
],
7533
"since-commit": "f66f9246bccc376462ef47aec5707569fca214f5",
76-
"age": 4
34+
"age": 5
7735
},
7836
{
7937
"message": "Prevent multiplication overflow in backoff computation",
@@ -88,7 +46,7 @@
8846
"aws-sdk-rust#960"
8947
],
9048
"since-commit": "f66f9246bccc376462ef47aec5707569fca214f5",
91-
"age": 4
49+
"age": 5
9250
},
9351
{
9452
"message": "Make some types for various services optional. Previously, they defaulted to 0, but this created invalid requests.",
@@ -102,7 +60,7 @@
10260
"smithy-rs#3228"
10361
],
10462
"since-commit": "f66f9246bccc376462ef47aec5707569fca214f5",
105-
"age": 4
63+
"age": 5
10664
},
10765
{
10866
"message": "Types/functions that were deprecated in previous releases were removed. Unfortunately, some of these deprecations\nwere ignored by the Rust compiler (we found out later that `#[deprecated]` on `pub use` doesn't work). See\nthe [deprecations removal list](https://github.com/smithy-lang/smithy-rs/discussions/3223) for more details.\n",
@@ -116,7 +74,7 @@
11674
"smithy-rs#3222"
11775
],
11876
"since-commit": "f66f9246bccc376462ef47aec5707569fca214f5",
119-
"age": 4
77+
"age": 5
12078
},
12179
{
12280
"message": "Add `Display` impl for `DateTime`.",
@@ -130,7 +88,7 @@
13088
"smithy-rs#3183"
13189
],
13290
"since-commit": "f66f9246bccc376462ef47aec5707569fca214f5",
133-
"age": 4
91+
"age": 5
13492
},
13593
{
13694
"message": "Types/functions that were previously `#[doc(hidden)]` in `aws-config`, `aws-inlineable`, `aws-types`, and the SDK crates are now visible. For those that are not intended to be used directly, they are called out in their docs as such.",
@@ -144,7 +102,7 @@
144102
"smithy-rs#3226"
145103
],
146104
"since-commit": "f66f9246bccc376462ef47aec5707569fca214f5",
147-
"age": 4
105+
"age": 5
148106
},
149107
{
150108
"message": "Make properties of S3Control PublicAccessBlockConfiguration optional. Previously, they defaulted to false, but this created invalid requests.",
@@ -158,7 +116,7 @@
158116
"smithy-rs#3246"
159117
],
160118
"since-commit": "e155c3048b9989fe406ef575d461ea01dfaf294c",
161-
"age": 3
119+
"age": 4
162120
},
163121
{
164122
"message": "Allow `--` to be used in bucket names for S3",
@@ -172,7 +130,36 @@
172130
"smithy-rs#3253"
173131
],
174132
"since-commit": "48e3c95a3f10eebd5a637f8e7670c4232cdabbe4",
175-
"age": 2
133+
"age": 3
134+
},
135+
{
136+
"message": "Retry additional classes of H2 errors (H2 GoAway & H2 ResetStream)",
137+
"meta": {
138+
"bug": false,
139+
"breaking": false,
140+
"tada": false
141+
},
142+
"author": "rcoh",
143+
"references": [
144+
"aws-sdk-rust#738",
145+
"aws-sdk-rust#858"
146+
],
147+
"since-commit": "88970ba88ef45266aade152c7c1da8e90b24c0d7",
148+
"age": 1
149+
},
150+
{
151+
"message": "Make some properties for IoT types optional. Previously, they defaulted to false, but that isn't how the service actual works.",
152+
"meta": {
153+
"bug": true,
154+
"breaking": true,
155+
"tada": false
156+
},
157+
"author": "milesziemer",
158+
"references": [
159+
"smithy-rs#3256"
160+
],
161+
"since-commit": "88970ba88ef45266aade152c7c1da8e90b24c0d7",
162+
"age": 1
176163
}
177164
],
178165
"aws-sdk-model": []

0 commit comments

Comments
 (0)