Releases: kata198/indexedredis
3.1.1 - Gentle Magic Kitty
3.1.1 - Apr 15 2016
- Fix some 4.0 docs that slipped in to 3.0 series
3.1.0 - Apr 15 2016
- Fix where on updating a model, some operations would occur outside of a
transaction.
- Fix "reload" method to actually work. It now returns a dict of fields
changed -> tuple(old value, new value)
- Allow model.saver.save to take a QueryableList (the return of .all()) by
changing isinstance to issubclass.
3.0.3 - Apr 11 2016
- Fix issue with binary fields, they were always seen as "changed" even
when no update was made, which could have caused unnecessary updates and
saves
- When deleting single objects, do entire operation in a transaction
in case a part fails (like if Redis server is shut down)
3.0.3 - Visible Ninja
3.0.3 - Apr 11 2016
- Fix issue with binary fields, they were always seen as "changed" even
when no update was made, which could have caused unnecessary updates and
saves
- When deleting single objects, do entire operation in a transaction
in case a part fails (like if Redis server is shut down)
Release 3.0.0
3.0.0 - Jan 12 2016
- Change return type of functions that used to be a list of instantiated model objects to a QueryableList ( https://github.com/kata198/QueryableList ) which allows easilly chaining complex client-side filtering (beyond just equals and not-equals as the DB-side exists). This is not a backwards-incompatible change, but is forwards-incompatible (i.e. your code may require IndexedRedis>=3.0.0 if you choose to use the client-side filtering)
- Restore the repr-view of bytes in repr instead of the "BINARY DATA OF LENGTH N" format.