[fixed] Thanks to github user https://github.com/stacywsmith for the bug report and PR for fixing the Redis client compatability edge case due to the Redis Python client upgrades [changed] Upgraded machines, so upgraded sphinx, so docs got mangled, huge changelog for what amounts to a few lines of library code change
0.42.3
[fixed] IndexOnly() columns no longer accept the unique parameter (was ignored in effect, anyway) [added] IndexOnly() columns now take a keygen2 parameter in lieu of the column + keygen argument. [fixed] Some links in the docs
0.42.2
[fixed] Model.query.select().limit() will now honor the passed-in limit. Thanks to Github user https://github.com/healiseu for the bug report [fixed] Model.query.select() will now no longer pollute non-null session objects with partial / broken objects. Thanks to Github user https://github.com/healiseu for the bug report
0.42.1
[fixed] Session object wasn't always initialized correctly. Bug report thanks to github user https://github.com/cdessez .
0.42.0
[changed] Attributes passed on object creation that don't exist will now raise an exception, unless you explicitly pass _extra_ok=True. [fixed] a fix from bugs 108/109 where objects wouldn't be added to the session when they should be, and would when they shouldn't be. [fixed] potential issue when using select and order_by; could have returned model entities instead of columns selected. [fixed] issue with iterators over select queries possibly returning bad data silently (columns would all be 'False'). [fixed] issue with entities going into the session during arbitrary queries where they shouldn't have. [fixed] hopefully got sphinx docs to generate consistent order, so subsequent commits don't result in rewriting it all for every commit :/
0.41.2
[added] Model.update(*args, **kwargs) as a convenience method per requset from github user https://github.com/61t [fixed] multi-subclassed models may have raised a duplicate PrimaryKey error on initialization. [fixed] small issue with over-writing values on IndexOnly() columns not raising an exception.