Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

aws json client max arity to Int.MaxValue #1445

Merged
merged 1 commit into from Mar 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,7 @@
# 0.18.14

* Update aws-http4s clients using json to have a maxArity of Int.MaxValue

# 0.18.13

* Enable generation of protobuf specifications from smithy specifications.
Expand Down
Expand Up @@ -37,6 +37,7 @@ private[aws] object AwsJsonCodecs {
.withInfinitySupport(true)
.withFlexibleCollectionsSupport(true)
.withHintMask(hintMask)
.withMaxArity(Int.MaxValue)
)

private[aws] val jsonDecoders = jsonPayloadCodecs.decoders
Expand Down
Expand Up @@ -37,6 +37,7 @@ private[aws] object AwsRestJsonCodecs {
.withInfinitySupport(true)
.withFlexibleCollectionsSupport(true)
.withHintMask(hintMask)
.withMaxArity(Int.MaxValue)
)

def nullToEmptyObject(blob: Blob): Blob =
Expand Down