All Versions
26
Latest Version
Avg Release Cycle
131 days
Latest Release
2271 days ago
Changelog History
Page 3
Changelog History
Page 3
-
v0.8.1 Changes
- Release for Scala 2.12 in addition to 2.11
-
v0.8.0 Changes
Definitely Breaking changes:
- Switched from using
Xor
toEither
(#67)
Possibly breaking changes:
- Return the new value after an update (#66)
- Read Dynamo NULL values as
None
for values mapped to anOption
(#65)
Innocent changes:
- Attempt to provide better errors when unable derive a
DynamoFormat
(#64) - Add REMOVE support to the update API (#63 - @cb372)
- Add an
iso
method toDynamoFormat
(#62 - @cb372)
- Switched from using
-
v0.7.0 Changes
- default
DynamoFormat
instances forByte
andArray[Byte]
(@drocsid) - default
DynamoFormat
instance forSeq
(@paulmr) - default
DynamoFormat
instance forShort
- upgrade to Cats 0.7.0 (@travisbrown)
- added
scan
andquery
methods explicitly toTable
andIndex
๐ฅ Breaking change:
- Bulk operations(
putAll
andgetAll
) now take aSet
rather thanList
, which better reflects the underlying behaviour
- default
-
v0.6.0 Changes
๐ New feature:
- support for
update
operations
- support for
-
v0.5.0 Changes
๐ New features:
- support for conditional
put
anddelete
operations via thegiven
method onTable
- support for limiting the number of items evaluated by
query
andscan
operations - a default
DynamoFormat
instance forVector
๐ฅ Breaking changes:
query
andscan
operations now return aList
, not aStream
, as they were being eagerly evaluated
- support for conditional
-
v0.4.0 Changes
2016 April 29
๐ New features:
- adds
Table
to try and simplify common use cases #21 - adds support for queries that return results in descending range key order #23
- adds default
DynamoFormat
instances forDouble
,Set[Int]
,Set[Long]
,Set[Double]
andSet[String]
#24 - adds
coercedXmap
toDynamoFormat
for the common case of serialisation that should always work, but deserialisation that is only valid for a subset of the serialised type #14
๐ฅ Breaking changes:
- adds