Skip to content

Commit 27498a7

Browse files
Update changelog
1 parent 9201176 commit 27498a7

File tree

3 files changed

+214
-266
lines changed

3 files changed

+214
-266
lines changed

CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,30 @@
11
<!-- Do not manually edit this file. Use the `changelogger` tool. -->
2+
April 26th, 2023
3+
================
4+
**Breaking Changes:**
5+
- ⚠ (all, [smithy-rs#2611](https://github.com/awslabs/smithy-rs/issues/2611)) Update MSRV to Rust 1.67.1
6+
7+
**New this release:**
8+
- 🎉 (server, [smithy-rs#2540](https://github.com/awslabs/smithy-rs/issues/2540)) Implement layer for servers to handle [ALB health checks](https://docs.aws.amazon.com/elasticloadbalancing/latest/application/target-group-health-checks.html).
9+
Take a look at `aws_smithy_http_server::plugin::alb_health_check` to learn about it.
10+
- 🎉 (client, [smithy-rs#2254](https://github.com/awslabs/smithy-rs/issues/2254), @eduardomourar) Clients now compile for the `wasm32-unknown-unknown` and `wasm32-wasi` targets when no default features are enabled. WebAssembly is not officially supported yet, but this is a great first step towards it!
11+
- (server, [smithy-rs#2540](https://github.com/awslabs/smithy-rs/issues/2540)) Implement `PluginPipeline::http_layer` which allows you to apply a `tower::Layer` to all operations.
12+
- (client, [aws-sdk-rust#784](https://github.com/awslabs/aws-sdk-rust/issues/784), @abusch) Implement std::error::Error#source() properly for the service meta Error enum.
13+
- 🐛 (all, [smithy-rs#2496](https://github.com/awslabs/smithy-rs/issues/2496)) The outputs for event stream operations now implement the `Sync` auto-trait.
14+
- 🐛 (all, [smithy-rs#2495](https://github.com/awslabs/smithy-rs/issues/2495)) Streaming operations now emit the request ID at the `debug` log level like their non-streaming counterparts.
15+
- 🐛 (client, [smithy-rs#2495](https://github.com/awslabs/smithy-rs/issues/2495)) Streaming operations now emit the request ID at the `debug` log level like their non-streaming counterparts.
16+
- (client, [smithy-rs#2507](https://github.com/awslabs/smithy-rs/issues/2507)) The `enableNewCrateOrganizationScheme` codegen flag has been removed. If you opted out of the new crate organization scheme, it must be adopted now in order to upgrade (see [the upgrade guidance](https://github.com/awslabs/smithy-rs/discussions/2449) from March 23rd's release).
17+
- (client, [smithy-rs#2534](https://github.com/awslabs/smithy-rs/issues/2534)) `aws_smithy_types::date_time::Format` has been re-exported in service client crates.
18+
- 🐛 (server, [smithy-rs#2582](https://github.com/awslabs/smithy-rs/issues/2582), [smithy-rs#2585](https://github.com/awslabs/smithy-rs/issues/2585)) Fix generation of constrained shapes reaching `@sensitive` shapes
19+
- 🐛 (server, [smithy-rs#2583](https://github.com/awslabs/smithy-rs/issues/2583), [smithy-rs#2584](https://github.com/awslabs/smithy-rs/issues/2584)) Fix server code generation bug affecting constrained shapes bound with `@httpPayload`
20+
- (client, [smithy-rs#2603](https://github.com/awslabs/smithy-rs/issues/2603)) Add a sensitive method to `ParseHttpResponse`. When this returns true, logging of the HTTP response body will be suppressed.
21+
22+
**Contributors**
23+
Thank you for your contributions! ❤
24+
- @abusch ([aws-sdk-rust#784](https://github.com/awslabs/aws-sdk-rust/issues/784))
25+
- @eduardomourar ([smithy-rs#2254](https://github.com/awslabs/smithy-rs/issues/2254))
26+
27+
228
April 11th, 2023
329
================
430

CHANGELOG.next.toml

Lines changed: 1 addition & 162 deletions
Original file line numberDiff line numberDiff line change
@@ -9,165 +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 = """
16-
Implement layer for servers to handle [ALB health checks](https://docs.aws.amazon.com/elasticloadbalancing/latest/application/target-group-health-checks.html).
17-
Take a look at `aws_smithy_http_server::plugin::alb_health_check` to learn about it.
18-
"""
19-
references = ["smithy-rs#2540"]
20-
meta = { "breaking" = false, "tada" = true, "bug" = false, "target" = "server" }
21-
author = "jjant"
22-
23-
[[smithy-rs]]
24-
message = "Implement `PluginPipeline::http_layer` which allows you to apply a `tower::Layer` to all operations."
25-
references = ["smithy-rs#2540"]
26-
meta = { "breaking" = false, "tada" = false, "bug" = false, "target" = "server" }
27-
author = "jjant"
28-
29-
[[aws-sdk-rust]]
30-
message = "Implement std::error::Error#source() properly for the service meta Error enum."
31-
references = ["aws-sdk-rust#784"]
32-
meta = { "breaking" = false, "tada" = false, "bug" = false }
33-
author = "abusch"
34-
35-
[[smithy-rs]]
36-
message = "Implement std::error::Error#source() properly for the service meta Error enum."
37-
references = ["aws-sdk-rust#784"]
38-
meta = { "breaking" = false, "tada" = false, "bug" = false, "target" = "client" }
39-
author = "abusch"
40-
41-
[[aws-sdk-rust]]
42-
message = "The outputs for event stream operations (for example, S3's SelectObjectContent) now implement the `Sync` auto-trait."
43-
references = ["smithy-rs#2496"]
44-
meta = { "breaking" = false, "tada" = false, "bug" = true }
45-
author = "jdisanti"
46-
47-
[[smithy-rs]]
48-
message = "The outputs for event stream operations now implement the `Sync` auto-trait."
49-
references = ["smithy-rs#2496"]
50-
meta = { "breaking" = false, "tada" = false, "bug" = true, "target" = "all" }
51-
author = "jdisanti"
52-
53-
[[aws-sdk-rust]]
54-
message = "The AWS SDK now compiles for the `wasm32-unknown-unknown` and `wasm32-wasi` targets when no default features are enabled. WebAssembly is not officially supported yet, but this is a great first step towards it!"
55-
references = ["smithy-rs#2254"]
56-
meta = { "breaking" = false, "tada" = true, "bug" = false }
57-
author = "eduardomourar"
58-
59-
[[smithy-rs]]
60-
message = "Clients now compile for the `wasm32-unknown-unknown` and `wasm32-wasi` targets when no default features are enabled. WebAssembly is not officially supported yet, but this is a great first step towards it!"
61-
references = ["smithy-rs#2254"]
62-
meta = { "breaking" = false, "tada" = true, "bug" = false, "target" = "client" }
63-
author = "eduardomourar"
64-
65-
[[smithy-rs]]
66-
message = "Streaming operations now emit the request ID at the `debug` log level like their non-streaming counterparts."
67-
references = ["smithy-rs#2495"]
68-
meta = { "breaking" = false, "tada" = false, "bug" = true }
69-
author = "jdisanti"
70-
71-
[[smithy-rs]]
72-
message = "Streaming operations now emit the request ID at the `debug` log level like their non-streaming counterparts."
73-
references = ["smithy-rs#2495"]
74-
meta = { "breaking" = false, "tada" = false, "bug" = true, "target" = "client" }
75-
author = "jdisanti"
76-
77-
[[smithy-rs]]
78-
message = "The `enableNewCrateOrganizationScheme` codegen flag has been removed. If you opted out of the new crate organization scheme, it must be adopted now in order to upgrade (see [the upgrade guidance](https://github.com/awslabs/smithy-rs/discussions/2449) from March 23rd's release)."
79-
references = ["smithy-rs#2507"]
80-
meta = { "breaking" = false, "tada" = false, "bug" = false, "target" = "client" }
81-
author = "jdisanti"
82-
83-
[[aws-sdk-rust]]
84-
message = """
85-
S3's `GetObject` will no longer panic when checksum validation is enabled and the target object was uploaded as a multi-part upload.
86-
However, these objects cannot be checksum validated by the SDK due to the way checksums are calculated for multipart uploads.
87-
For more information, see [this page](https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums).
88-
"""
89-
references = ["aws-sdk-rust#764"]
90-
meta = { "breaking" = false, "tada" = false, "bug" = true }
91-
author = "Velfi"
92-
93-
[[aws-sdk-rust]]
94-
message = "`AppName` is now configurable from within `ConfigLoader`."
95-
references = ["smithy-rs#2513"]
96-
meta = { "breaking" = false, "tada" = false, "bug" = true }
97-
author = "ysaito1001"
98-
99-
[[aws-sdk-rust]]
100-
message = "Add support for omitting session token in canonical requests for SigV4 signing."
101-
references = ["smithy-rs#2473"]
102-
meta = { "breaking" = false, "tada" = false, "bug" = false }
103-
author = "martinjlowm"
104-
105-
[[aws-sdk-rust]]
106-
message = "Add `into_segments` method to `AggregatedBytes`, for zero-copy conversions."
107-
references = ["smithy-rs#2525"]
108-
meta = { "breaking" = false, "tada" = false, "bug" = false }
109-
author = "parker-timmerman"
110-
111-
[[aws-sdk-rust]]
112-
message = "Fix bug where an incorrect endpoint was produced for `WriteGetObjectResponse`"
113-
references = ["smithy-rs#781", "aws-sdk-rust#781"]
114-
meta = { "breaking" = false, "tada" = false, "bug" = true }
115-
author = "rcoh"
116-
117-
[[aws-sdk-rust]]
118-
message = "Update the `std::fmt::Debug` implementation for `aws-sigv4::SigningParams` so that it will no longer print sensitive information."
119-
references = ["smithy-rs#2562"]
120-
meta = { "breaking" = false, "tada" = true, "bug" = true }
121-
author = "Velfi"
122-
123-
[[aws-sdk-rust]]
124-
message = "`aws_smithy_types::date_time::Format` has been re-exported in SDK crates."
125-
references = ["smithy-rs#2534"]
126-
meta = { "breaking" = false, "tada" = false, "bug" = false }
127-
author = "ysaito1001"
128-
129-
[[smithy-rs]]
130-
message = "`aws_smithy_types::date_time::Format` has been re-exported in service client crates."
131-
references = ["smithy-rs#2534"]
132-
meta = { "breaking" = false, "tada" = false, "bug" = false, "target" = "client" }
133-
author = "ysaito1001"
134-
135-
[[smithy-rs]]
136-
message = "Fix generation of constrained shapes reaching `@sensitive` shapes"
137-
references = ["smithy-rs#2582", "smithy-rs#2585"]
138-
meta = { "breaking" = false, "tada" = false, "bug" = true, "target" = "server" }
139-
author = "david-perez"
140-
141-
[[smithy-rs]]
142-
message = "Fix server code generation bug affecting constrained shapes bound with `@httpPayload`"
143-
references = ["smithy-rs#2583", "smithy-rs#2584"]
144-
meta = { "breaking" = false, "tada" = false, "bug" = true, "target" = "server" }
145-
author = "david-perez"
146-
147-
[[aws-sdk-rust]]
148-
message = """Reduce several instances of credential exposure in the SDK logs:
149-
- IMDS now suppresses the body of the response from logs
150-
- `aws-sigv4` marks the `x-amz-session-token` header as sensitive
151-
- STS & SSO credentials have been manually marked as sensitive which suppresses logging of response bodies for relevant operations
152-
"""
153-
author = "rcoh"
154-
references = ["smithy-rs#2603"]
155-
meta = { "breaking" = false, "tada" = false, "bug" = false }
156-
157-
[[smithy-rs]]
158-
message = "Add a sensitive method to `ParseHttpResponse`. When this returns true, logging of the HTTP response body will be suppressed."
159-
author = "rcoh"
160-
references = ["smithy-rs#2603"]
161-
meta = { "breaking" = false, "tada" = false, "bug" = false, "target" = "client" }
162-
163-
[[aws-sdk-rust]]
164-
message = "Update MSRV to Rust 1.67.1"
165-
references = ["smithy-rs#2611"]
166-
meta = { "breaking" = true, "tada" = false, "bug" = false }
167-
author = "jdisanti"
168-
169-
[[smithy-rs]]
170-
message = "Update MSRV to Rust 1.67.1"
171-
references = ["smithy-rs#2611"]
172-
meta = { "breaking" = true, "tada" = false, "bug" = false, "target" = "all"}
173-
author = "jdisanti"
12+
# author = "rcoh"

0 commit comments

Comments
 (0)