Skip to content

Commit 49dae16

Browse files
Update changelog
1 parent 9f0ba85 commit 49dae16

File tree

3 files changed

+30
-36
lines changed

3 files changed

+30
-36
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 11th, 2023
3+
===================
4+
**New this release:**
5+
- :bug: (client, [smithy-rs#3305](https://github.com/smithy-lang/smithy-rs/issues/3305)) `crate::event_receiver::EventReceiver` is now re-exported as `crate::primitives::event_stream::EventReceiver` when a service supports event stream operations.
6+
7+
28
December 8th, 2023
39
==================
410
**New this release:**

CHANGELOG.next.toml

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +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 = "`crate::event_receiver::EventReceiver` is now re-exported as `crate::primitives::event_stream::EventReceiver` when a service supports event stream operations."
16-
references = ["smithy-rs#3305"]
17-
meta = { "breaking" = false, "tada" = false, "bug" = true, "target" = "client" }
18-
author = "ysaito1001"
19-
20-
[[aws-sdk-rust]]
21-
message = "`crate::event_receiver::EventReceiver` is now re-exported as `crate::primitives::event_stream::EventReceiver` when a service supports event stream operations."
22-
references = ["smithy-rs#3305"]
23-
meta = { "breaking" = false, "tada" = false, "bug" = true }
24-
author = "ysaito1001"
12+
# author = "rcoh"

aws/SDK_CHANGELOG.next.json

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,6 @@
55
{
66
"smithy-rs": [],
77
"aws-sdk-rust": [
8-
{
9-
"message": "Allow `--` to be used in bucket names for S3",
10-
"meta": {
11-
"bug": true,
12-
"breaking": false,
13-
"tada": false
14-
},
15-
"author": "rcoh",
16-
"references": [
17-
"smithy-rs#3253"
18-
],
19-
"since-commit": "48e3c95a3f10eebd5a637f8e7670c4232cdabbe4",
20-
"age": 5
21-
},
228
{
239
"message": "Retry additional classes of H2 errors (H2 GoAway & H2 ResetStream)",
2410
"meta": {
@@ -32,7 +18,7 @@
3218
"aws-sdk-rust#858"
3319
],
3420
"since-commit": "88970ba88ef45266aade152c7c1da8e90b24c0d7",
35-
"age": 3
21+
"age": 4
3622
},
3723
{
3824
"message": "Make some properties for IoT types optional. Previously, they defaulted to false, but that isn't how the service actual works.",
@@ -46,7 +32,7 @@
4632
"smithy-rs#3256"
4733
],
4834
"since-commit": "88970ba88ef45266aade152c7c1da8e90b24c0d7",
49-
"age": 3
35+
"age": 4
5036
},
5137
{
5238
"message": "Fix `config::Builder::set_credentials_provider` to override a credentials provider previously set.",
@@ -61,7 +47,7 @@
6147
"smithy-rs#3278"
6248
],
6349
"since-commit": "529b3f03e2b945ea2e5e879183ccfd8e74b7377c",
64-
"age": 2
50+
"age": 3
6551
},
6652
{
6753
"message": "`config::Config::credentials_provider` has been broken since `release-2023-11-15` and is now marked as `deprecated` explicitly.",
@@ -76,7 +62,7 @@
7662
"smithy-rs#3278"
7763
],
7864
"since-commit": "529b3f03e2b945ea2e5e879183ccfd8e74b7377c",
79-
"age": 2
65+
"age": 3
8066
},
8167
{
8268
"message": "Loading native TLS trusted certs for the default HTTP client now only occurs if the default HTTP client is not overridden in config.",
@@ -90,7 +76,7 @@
9076
"smithy-rs#3262"
9177
],
9278
"since-commit": "fc335cbc87e70aa63895828fca55b51795b94a6c",
93-
"age": 1
79+
"age": 2
9480
},
9581
{
9682
"message": "Client creation now takes microseconds instead of milliseconds.\nPreviously, it would take 2-3 milliseconds for each client instantiation due to time spent compiling regexes.\nFor applications that used several clients, this would increase start-up time in cases where it really matters,\nsuch as for AWS Lambda cold starts. This time was improved by both changing regex implementation and caching the\nresult of the compilation.",
@@ -105,7 +91,7 @@
10591
"smithy-rs#3269"
10692
],
10793
"since-commit": "fc335cbc87e70aa63895828fca55b51795b94a6c",
108-
"age": 1
94+
"age": 2
10995
},
11096
{
11197
"message": "Add `test_credentials` to `ConfigLoader` in `aws_config`. This allows the following pattern during tests:\n\n```rust\nasync fn main() {\n let conf = aws_config::defaults(BehaviorVersion::latest())\n .test_credentials()\n .await;\n}\n```\n\nThis is designed for unit tests and using local mocks like DynamoDB Local and LocalStack with the SDK.\n",
@@ -120,7 +106,7 @@
120106
"aws-sdk-rust#971"
121107
],
122108
"since-commit": "fc335cbc87e70aa63895828fca55b51795b94a6c",
123-
"age": 1
109+
"age": 2
124110
},
125111
{
126112
"message": "Improve the error messages for when auth fails to select an auth scheme for a request.",
@@ -135,7 +121,7 @@
135121
"smithy-rs#3277"
136122
],
137123
"since-commit": "fc335cbc87e70aa63895828fca55b51795b94a6c",
138-
"age": 1
124+
"age": 2
139125
},
140126
{
141127
"message": "Fix documentation and examples on HyperConnector and HyperClientBuilder.",
@@ -150,7 +136,7 @@
150136
"smithy-rs#3282"
151137
],
152138
"since-commit": "fc335cbc87e70aa63895828fca55b51795b94a6c",
153-
"age": 1
139+
"age": 2
154140
},
155141
{
156142
"message": "All generated docs now include docsrs labels when features are required",
@@ -165,6 +151,20 @@
165151
"smithy-rs#3295"
166152
],
167153
"since-commit": "fc335cbc87e70aa63895828fca55b51795b94a6c",
154+
"age": 2
155+
},
156+
{
157+
"message": "`crate::event_receiver::EventReceiver` is now re-exported as `crate::primitives::event_stream::EventReceiver` when a service supports event stream operations.",
158+
"meta": {
159+
"bug": true,
160+
"breaking": false,
161+
"tada": false
162+
},
163+
"author": "ysaito1001",
164+
"references": [
165+
"smithy-rs#3305"
166+
],
167+
"since-commit": "9f0ba850e03241f657e2e40ca185780e0a5878cb",
168168
"age": 1
169169
}
170170
],

0 commit comments

Comments
 (0)