Skip to content

Commit cd6baa9

Browse files
Update changelog
1 parent 529b3f0 commit cd6baa9

File tree

3 files changed

+35
-116
lines changed

3 files changed

+35
-116
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+
December 1st, 2023
3+
==================
4+
**New this release:**
5+
- (client, [smithy-rs#3278](https://github.com/smithy-lang/smithy-rs/issues/3278)) `RuntimeComponentsBuilder::push_identity_resolver` is now deprecated since it does not replace the existing identity resolver of a given auth scheme ID. Use `RuntimeComponentsBuilder::set_identity_resolver` instead.
6+
7+
28
November 27th, 2023
39
===================
410
**New this release:**

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-
[[aws-sdk-rust]]
15-
message = "Fix `config::Builder::set_credentials_provider` to override a credentials provider previously set."
16-
references = ["aws-sdk-rust#973", "smithy-rs#3278"]
17-
meta = { "breaking" = false, "tada" = false, "bug" = true }
18-
author = "ysaito1001"
19-
20-
[[aws-sdk-rust]]
21-
message = "`config::Config::credentials_provider` has been broken since `release-2023-11-15` and is now marked as `deprecated` explicitly."
22-
references = ["smithy-rs#3251", "smithy-rs#3278"]
23-
meta = { "breaking" = false, "tada" = false, "bug" = false }
24-
author = "ysaito1001"
25-
26-
[[smithy-rs]]
27-
message = "`RuntimeComponentsBuilder::push_identity_resolver` is now deprecated since it does not replace the existing identity resolver of a given auth scheme ID. Use `RuntimeComponentsBuilder::set_identity_resolver` instead."
28-
references = ["smithy-rs#3278"]
29-
meta = { "breaking" = false, "tada" = false, "bug" = false, "target" = "client" }
30-
author = "ysaito1001"
12+
# author = "rcoh"

aws/SDK_CHANGELOG.next.json

Lines changed: 28 additions & 97 deletions
Original file line numberDiff line numberDiff line change
@@ -6,159 +6,90 @@
66
"smithy-rs": [],
77
"aws-sdk-rust": [
88
{
9-
"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",
10-
"meta": {
11-
"bug": false,
12-
"breaking": true,
13-
"tada": true
14-
},
15-
"author": "Velfi",
16-
"references": [
17-
"smithy-rs#3202"
18-
],
19-
"since-commit": "f66f9246bccc376462ef47aec5707569fca214f5",
20-
"age": 5
21-
},
22-
{
23-
"message": "Make certain types for EMR Serverless optional. Previously, they defaulted to 0, but this created invalid requests.",
9+
"message": "Make properties of S3Control PublicAccessBlockConfiguration optional. Previously, they defaulted to false, but this created invalid requests.",
2410
"meta": {
2511
"bug": true,
2612
"breaking": true,
2713
"tada": false
2814
},
2915
"author": "milesziemer",
3016
"references": [
31-
"smithy-rs#3217"
17+
"smithy-rs#3246"
3218
],
33-
"since-commit": "f66f9246bccc376462ef47aec5707569fca214f5",
19+
"since-commit": "e155c3048b9989fe406ef575d461ea01dfaf294c",
3420
"age": 5
3521
},
3622
{
37-
"message": "Prevent multiplication overflow in backoff computation",
23+
"message": "Allow `--` to be used in bucket names for S3",
3824
"meta": {
3925
"bug": true,
4026
"breaking": false,
4127
"tada": false
4228
},
4329
"author": "rcoh",
4430
"references": [
45-
"smithy-rs#3229",
46-
"aws-sdk-rust#960"
47-
],
48-
"since-commit": "f66f9246bccc376462ef47aec5707569fca214f5",
49-
"age": 5
50-
},
51-
{
52-
"message": "Make some types for various services optional. Previously, they defaulted to 0, but this created invalid requests.",
53-
"meta": {
54-
"bug": true,
55-
"breaking": true,
56-
"tada": false
57-
},
58-
"author": "milesziemer",
59-
"references": [
60-
"smithy-rs#3228"
61-
],
62-
"since-commit": "f66f9246bccc376462ef47aec5707569fca214f5",
63-
"age": 5
64-
},
65-
{
66-
"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",
67-
"meta": {
68-
"bug": false,
69-
"breaking": true,
70-
"tada": false
71-
},
72-
"author": "jdisanti",
73-
"references": [
74-
"smithy-rs#3222"
75-
],
76-
"since-commit": "f66f9246bccc376462ef47aec5707569fca214f5",
77-
"age": 5
78-
},
79-
{
80-
"message": "Add `Display` impl for `DateTime`.",
81-
"meta": {
82-
"bug": false,
83-
"breaking": false,
84-
"tada": true
85-
},
86-
"author": "HakanVardarr",
87-
"references": [
88-
"smithy-rs#3183"
31+
"smithy-rs#3253"
8932
],
90-
"since-commit": "f66f9246bccc376462ef47aec5707569fca214f5",
91-
"age": 5
33+
"since-commit": "48e3c95a3f10eebd5a637f8e7670c4232cdabbe4",
34+
"age": 4
9235
},
9336
{
94-
"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.",
37+
"message": "Retry additional classes of H2 errors (H2 GoAway & H2 ResetStream)",
9538
"meta": {
9639
"bug": false,
9740
"breaking": false,
9841
"tada": false
9942
},
100-
"author": "ysaito1001",
43+
"author": "rcoh",
10144
"references": [
102-
"smithy-rs#3226"
45+
"aws-sdk-rust#738",
46+
"aws-sdk-rust#858"
10347
],
104-
"since-commit": "f66f9246bccc376462ef47aec5707569fca214f5",
105-
"age": 5
48+
"since-commit": "88970ba88ef45266aade152c7c1da8e90b24c0d7",
49+
"age": 2
10650
},
10751
{
108-
"message": "Make properties of S3Control PublicAccessBlockConfiguration optional. Previously, they defaulted to false, but this created invalid requests.",
52+
"message": "Make some properties for IoT types optional. Previously, they defaulted to false, but that isn't how the service actual works.",
10953
"meta": {
11054
"bug": true,
11155
"breaking": true,
11256
"tada": false
11357
},
11458
"author": "milesziemer",
11559
"references": [
116-
"smithy-rs#3246"
60+
"smithy-rs#3256"
11761
],
118-
"since-commit": "e155c3048b9989fe406ef575d461ea01dfaf294c",
119-
"age": 4
62+
"since-commit": "88970ba88ef45266aade152c7c1da8e90b24c0d7",
63+
"age": 2
12064
},
12165
{
122-
"message": "Allow `--` to be used in bucket names for S3",
66+
"message": "Fix `config::Builder::set_credentials_provider` to override a credentials provider previously set.",
12367
"meta": {
12468
"bug": true,
12569
"breaking": false,
12670
"tada": false
12771
},
128-
"author": "rcoh",
72+
"author": "ysaito1001",
12973
"references": [
130-
"smithy-rs#3253"
74+
"aws-sdk-rust#973",
75+
"smithy-rs#3278"
13176
],
132-
"since-commit": "48e3c95a3f10eebd5a637f8e7670c4232cdabbe4",
133-
"age": 3
77+
"since-commit": "529b3f03e2b945ea2e5e879183ccfd8e74b7377c",
78+
"age": 1
13479
},
13580
{
136-
"message": "Retry additional classes of H2 errors (H2 GoAway & H2 ResetStream)",
81+
"message": "`config::Config::credentials_provider` has been broken since `release-2023-11-15` and is now marked as `deprecated` explicitly.",
13782
"meta": {
13883
"bug": false,
13984
"breaking": false,
14085
"tada": false
14186
},
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",
87+
"author": "ysaito1001",
15888
"references": [
159-
"smithy-rs#3256"
89+
"smithy-rs#3251",
90+
"smithy-rs#3278"
16091
],
161-
"since-commit": "88970ba88ef45266aade152c7c1da8e90b24c0d7",
92+
"since-commit": "529b3f03e2b945ea2e5e879183ccfd8e74b7377c",
16293
"age": 1
16394
}
16495
],

0 commit comments

Comments
 (0)