Skip to content

Releases: clearcare/cc_dynamodb3

0.6.18

06 Jun 20:57
8b6d142
Compare
Choose a tag to compare

Does not hard code AWS region.

Offer a build function

15 Dec 17:31
Compare
Choose a tag to compare
0.6.17

Merge pull request #32 from clearcare/CC-14283-allow-consolidation-of…

0.6.16

17 Oct 16:57
Compare
Choose a tag to compare

#31 Fix limit/Limit issue

0.6.15

14 Oct 20:09
Compare
Choose a tag to compare

#30 Paginate .all and scan (for ES reports)

0.6.14

17 May 18:23
Compare
Choose a tag to compare

#26 ConsistentRead support for GetItem

Query/scan and negative timestamps

12 May 00:22
Compare
Choose a tag to compare
  • #25 serialize date/datetime
  • #24 Drop support for query_count (too expensive)
  • #22 Negative timestamps
  • #20 Scan/query in table.py, less dependent on schematics

Paginated Query support

10 May 00:54
Compare
Choose a tag to compare

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

04 May 03:12
Compare
Choose a tag to compare

#20 Remove dependency on models.py for query/scan

Add MapType for map field with validation and fix table update

22 Apr 03:32
Compare
Choose a tag to compare

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

05 Apr 19:25
Compare
Choose a tag to compare

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.