Skip to content

Commit

Permalink
Merge branch 'series/0.18' into add-untagged-document-decoder
Browse files Browse the repository at this point in the history
  • Loading branch information
lewisjkl committed Mar 15, 2024
2 parents aa58be5 + f5db8d5 commit 8ffa2e2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
@@ -1,6 +1,7 @@
# 0.18.14

* Add support for decoding Document representations of untagged unions
* Update aws-http4s clients using json to have a maxArity of Int.MaxValue

# 0.18.13

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 8ffa2e2

Please sign in to comment.