Skip to content

v0.2.12

Compare
Choose a tag to compare
@googley42 googley42 released this 31 Aug 07:17
· 132 commits to series/2.x since this release
5b5cd29

Non breaking Changes

Breaking Changes

Although these are breaking changes they are relatively straightforward to fix and there are plenty of examples in the zio-dynamodb-examples sbt module under the zio/dynamodb/examples/dynamodblocal package.

The main change is the way that primary key expressions are specified. Previously they were specified as an AttrMap but now they are specified as $("email").partitionKey === "avi" && $("subject").sortKey === "maths" for the low level API and as
Student.email.partitionKey === "avi" && Student.subject.sortKey === "maths" for the high level API.