Skip to content

v2.3.5

Compare
Choose a tag to compare
@brainix brainix released this 31 Dec 10:54
· 149 commits to master since this release
97ad704

Bug Fix: Don't allow a RedisDeque to equal a RedisList...

...even if they're both on the same Redis instance and have the same key.

Before this release:

>>> from pottery import RedisDeque, RedisList
>>> RedisDeque(key='videos:dicts') == RedisList(key='videos:dicts')
True

As of this release:

>>> from pottery import RedisDeque, RedisList
>>> RedisDeque(key='videos:dicts') == RedisList(key='videos:dicts')
False

What's Changed

Full Changelog: v2.3.4...v2.3.5