All Versions
26
Latest Version
Avg Release Cycle
131 days
Latest Release
1935 days ago

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 to Either (#67)

    Possibly breaking changes:

    • Return the new value after an update (#66)
    • Read Dynamo NULL values as None for values mapped to an Option (#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 to DynamoFormat (#62 - @cb372)
  • v0.7.0 Changes

    • default DynamoFormat instances for Byte and Array[Byte] (@drocsid)
    • default DynamoFormat instance for Seq (@paulmr)
    • default DynamoFormat instance for Short
    • upgrade to Cats 0.7.0 (@travisbrown)
    • added scan and query methods explicitly to Table and Index

    ๐Ÿ’ฅ Breaking change:

    • Bulk operations(putAll and getAll) now take a Set rather than List, which better reflects the underlying behaviour
  • v0.6.0 Changes

    ๐Ÿ†• New feature:

    • support for update operations
  • v0.5.0 Changes

    ๐Ÿ†• New features:

    • support for conditional put and delete operations via the given method on Table
    • support for limiting the number of items evaluated by query and scan operations
    • a default DynamoFormat instance for Vector

    ๐Ÿ’ฅ Breaking changes:

    • query and scan operations now return a List, not a Stream, as they were being eagerly evaluated
  • 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 for Double, Set[Int], Set[Long], Set[Double] and Set[String] #24
    • adds coercedXmap to DynamoFormat 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:

    • replaces cats.data.Streaming with collection.immutable.Stream #13
    • replaces cats.data.ValidatedNel with cats.data.Xor in public interface #15 and #16
    • moves the packages that a number of types live in #17