All Versions
24
Latest Version
Avg Release Cycle
108 days
Latest Release
-
Changelog History
Page 1
Changelog History
Page 1
-
v0.5.4 Changes
- Constrain version of
dynamo3
dependency to avoid breakage
- Constrain version of
-
v0.5.3 Changes
August 10, 2018- ๐ Bug fix: Fix refresh when using custom-typed primary keys (:pr:
63
)
- ๐ Bug fix: Fix refresh when using custom-typed primary keys (:pr:
-
v0.5.2 Changes
March 18, 2017- ๐ Bug fix: Change limit behavior to match docs.
query().limit()
will limit the number of results,query().scan_limit()
will limit number of items scanned (:issue:57
)
- ๐ Bug fix: Change limit behavior to match docs.
-
v0.5.1 Changes
December 07, 2016- ๐ Feature: Add
update_schema()
method to Engine (:pr:53
)
- ๐ Feature: Add
-
v0.5.0 Changes
August 17, 2016- Breakage: Removing support for overflow fields. The only fields flywheel will care about now are those that are explicitly set as a Field()
- Flywheel no longer forces raise_on_conflict to be True when you sync changes to fields that are part of a composite field. It is now up to the user to avoid putting their composite fields into an inconsistent state.
- ๐ Feature: sync() has a new argument,
no_read
, which changes the behavior for syncing models with no changes. Instead of performing a GET, it will leave them as-is. This should make it easer to perform batch syncs without worrying as much about wasted bandwidth on GETs. Field
has renamed thedata_type
argument totype
(data_type
will still work)
-
v0.4.11 Changes
August 17, 2016- ๐ Bug fix: Boolean overflow fields no longer decoded as decimals (:pr:
46
)
- ๐ Bug fix: Boolean overflow fields no longer decoded as decimals (:pr:
-
v0.4.10 Changes
August 03, 2016- ๐ Feature: Add
exists()
method to Engine (:issue:45
)
- ๐ Feature: Add
-
v0.4.9 Changes
July 14, 2016- ๐ Feature: Add
save()
method to Models (:issue:40
) - ๐ Feature: Add
update_field()
method to Engine (:issue:43
)
- ๐ Feature: Add
-
v0.4.8 Changes
December 18, 2015- Bug fix: Bad function call in
index_pk_dict_
- Bug fix: Bad function call in
-
v0.4.7 Changes
December 17, 2015- New
index_pk_dict_
method for constructingexclusive_start_key
for index queries (:issue:34
)
- New