Skip to content

Commit

Permalink
aws json client max arity to Int.MaxValue (#1445)
Browse files Browse the repository at this point in the history
  • Loading branch information
lewisjkl committed Mar 15, 2024
1 parent 153842d commit f5db8d5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
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

0 comments on commit f5db8d5

Please sign in to comment.