Releases: clearcare/cc_dynamodb3
0.6.18
Offer a build function
0.6.17 Merge pull request #32 from clearcare/CC-14283-allow-consolidation-of…
0.6.16
0.6.15
0.6.14
Query/scan and negative timestamps
Paginated Query support
Return just a portion of the query results, along with the LastEvaluatedKey, allowing additional queries to retrieve successive portions of the results. This is useful in cases such as an infinite scrolling web page where AJAX callbacks will be used to retrieve additional results.
Flexible use for query/scan all records
#20 Remove dependency on models.py
for query/scan
Add MapType for map field with validation and fix table update
The advanced validation has to do with DynamoDB disallowing empty values for any nested key.
Also #19 fix table update error.
Add support for SetType
Define a new schematics type to be used with cc_dynamodb3: SetType. This type is derived from the schematics ListType. It forces its Python (native) representation to be a Python set.
Its purpose is for DynamoDB Number Sets and String Sets. Boto3 will do the conversion of Python sets containing Numbers (int or Decimal) to DynamoDB Number Sets and Python sets containing strings to DynamoDB String Sets.