Skip to content

1.1.1

Compare
Choose a tag to compare
@sai-pullabhotla sai-pullabhotla released this 04 Dec 14:23
· 139 commits to master since this release
  • Enhanced the support for List/Set/Map to allow mapping of embedded objects. For example, a list of Address objects can now be mapped to/from the Cloud Datastore.
  • Added support for creation of Secondary Indexes on the fields of an Entity. Secondary Indexes are useful, for example, to index a field in all lower case or upper case, to allow for case-insensitive querying and sorting. The Catatumbo framework handles this transparently by creating an additional property in the Cloud Datastore, without polluting the model classes. Added the below two new annotations to support this feature:
    • SecondaryIndex - specifies if a secondary index should be created for an entity's field.
    • PropertyIndexer - This optional annotation allows specifying which indexer implementation is to be used for creating the secondary index.
  • Updated Catatumbo to use the latest version, 0.7.0, of Google Cloud Java Client for Datastore API.