Skip to content

Releases: playpauseandstop/Flask-And-Redis

1.0.0 Release

18 Feb 18:51
Compare
Choose a tag to compare
  • Drop Python 2.6 & 3.3 support, ensure Python 3.6+ support. Kudos to jezdez for pull request & implementation
  • Support subclasses of the Redis client class. Again kudos to jezdez for pull request & implementation
  • Use inspect.getfullargspec() if available. Kudos to vibiu for pull request & implementation
  • Use redis.Redis as default connection class, when using redis-py >= 3

0.7 Release

18 Feb 18:50
Compare
Choose a tag to compare
  • Improve multiple app support. Kudos to timothyqiu for pull request & implementation
  • Simplify running tests for test application

0.6 Release

18 Feb 18:49
Compare
Choose a tag to compare
  • Python 3 support.
  • Move documentation to Read the Docs.
  • Refactor example test project to Comments app which shows how to use two Redis databases simultaneously.

0.5 Release

18 Feb 18:49
Compare
Choose a tag to compare
  • Use redis.StrictRedis as connection class by default.
  • Understands unix socket path in REDIS_HOST.
  • Updates to README.

0.4 Release

18 Feb 18:48
Compare
Choose a tag to compare
  • Big refactor for Redis class. Do not inherit redis.Redis class, store active redis connection in Redis.connection attribute and app.extensions['redis'] dict.
  • Add support of config_prefix keyword argument for Redis or Redis.init_app methods.
  • Support multiple redis connections in test application.

0.3.3 Release

18 Feb 18:47
Compare
Choose a tag to compare
  • Fix problem while parsing REDIS_URL value, strip unnecessary slashes from database path (like redis://localhost:6379/12/).

0.3.2 Release

18 Feb 18:47
Compare
Choose a tag to compare
  • Added redis as install requirement in setup.py.

0.3.1 Release

18 Feb 18:46
Compare
Choose a tag to compare
  • Move from flask_redis package to python module.
  • Little improvements for storing _flask_app attribute to Redis instance.

0.3 Release

18 Feb 18:46
Compare
Choose a tag to compare
  • Implement Redis.init_app method.