2021-12-04 03:47:52 +08:00
|
|
|
# Example changelog entries
|
|
|
|
# [[aws-sdk-rust]]
|
|
|
|
# message = "Fix typos in module documentation for generated crates"
|
|
|
|
# references = ["smithy-rs#920"]
|
|
|
|
# meta = { "breaking" = false, "tada" = false, "bug" = false }
|
|
|
|
# author = "rcoh"
|
|
|
|
#
|
|
|
|
# [[smithy-rs]]
|
|
|
|
# message = "Fix typos in module documentation for generated crates"
|
|
|
|
# references = ["smithy-rs#920"]
|
2022-08-17 02:59:10 +08:00
|
|
|
# meta = { "breaking" = false, "tada" = false, "bug" = false, "target" = "client | server | all"}
|
2024-06-20 18:27:28 +08:00
|
|
|
# author = "rcoh"
|
|
|
|
[[smithy-rs]]
|
|
|
|
message = "A feature, `aws-lambda`, has been added to generated SDKs to re-export types required for Lambda deployment."
|
|
|
|
references = ["smithy-rs#3643"]
|
|
|
|
meta = { "breaking" = false, "bug" = true, "tada" = false, "target" = "server" }
|
|
|
|
author = "drganjoo"
|
Allow expected content-type to ignore parameters (#3724)
Fixes: #3471
## Motivation and Context
An issue was raised about a mobile client that appends "; charset=utf-8"
to the Content-Type when using restJson1. The [latest
RFC](https://www.rfc-editor.org/rfc/rfc8259) for "application/json" does
not register a charset parameter, but indicates it is reasonable to
accept it.
## Description
This change loosens the validation of the expected content type to allow
all parameters.
## Testing
* Tests for each protocol were added to
[smithy](https://github.com/smithy-lang/smithy/pull/2296)
* ran the runtime and codegen tests
* Added test for rest-xml, as smithy-rs does not currently run the
smithy tests.
## Checklist
<!--- If a checkbox below is not applicable, then please DELETE it
rather than leaving it unchecked -->
- [x] I have updated `CHANGELOG.next.toml` if I made changes to the
smithy-rs codegen or runtime crates
- [x] I have updated `CHANGELOG.next.toml` if I made changes to the AWS
SDK, generated SDK code, or SDK runtime crates
----
_By submitting this pull request, I confirm that you can use, modify,
copy, and redistribute this contribution, under the terms of your
choice._
2024-06-28 23:25:23 +08:00
|
|
|
|
|
|
|
[[smithy-rs]]
|
|
|
|
message = """
|
|
|
|
Content-Type header validation now ignores parameter portion of media types.
|
|
|
|
"""
|
|
|
|
references = ["smithy-rs#3471","smithy-rs#3724"]
|
|
|
|
meta = { "breaking" = false, "tada" = false, "bug" = true, target = "server" }
|
|
|
|
authors = ["djedward"]
|