- Minor fix on regular expression for old url notation.
3.8.2
==================
- Revert some changes from 3.8.1 that are incompatible with redis server < 2.6.12
3.8.1
==================
- Fix documentation related to new url format. - Fix documentation parts that uses now removed functions. - Fix invalid url transformation from old format (password was not set properly) - Replace setex and friends with set, because it now supports all need for atomic updates (thanks to 23doors).
3.8.0
==================
- Add compression support. (Thanks to alanjds) - Change package name from redis_cache to django_redis. - Add backward compatibility layer for redis_cache package name. - BACKWARD INCOMPATIBLE CHANGE: use StrictRedis instead of Redis class of redis-py - Add redis dummy backend for development purposes. (Thanks to papaloizouc) - Now use redis native url notation for connection string (the own connection string notation is also supported but is marked as deprecated). - Now requires redis-py >= 2.10.0 - Remove deprecated ``raw_cache`` property from backend.
3.7.2
==================
- Add missing forward of version parameter from ``add()`` to ``set()`` function. (by fellowshipofone)