Releases: underyx/flask-redis
Releases · underyx/flask-redis
0.4.0 (2019-05-29)
0.3.0 (2016-07-18)
- Backwards incompatible: The
FlaskRedis.init_appmethod no longer takes
astrictparameter. Pass this flag when creating yourFlaskRedis
instance, instead. - Backwards incompatible: The extension will now be registered under the
(lowercased) config prefix of the instance. The default config prefix is
'REDIS', so unless you change that, you can still access the extension via
app.extensions['redis']as before. - Backwards incompatible: The default class has been changed to
redis.StrictRedis. You can switch back to the oldredis.Redisclass by
specifyingstrict=Falsein theFlaskRediskwargs. - You can now pass all supported
Rediskeyword arguments (such as
decode_responses) toFlaskRedisand they will be correctly passed over
to theredis-pyinstance. Thanks, @giyyapan! - Usage like
redis_store['key'] = value,redis_store['key'], and
del redis_store['key']is now supported. Thanks, @ariscn!
v0.1.0
- Deprecation: Renamed
flask_redis.Redistoflask_redis.FlaskRedis.
Using the old name still works, but emits a deprecation warning, as it will
be removed from the next version - Deprecation: Setting a
REDIS_DATABASE(or equivalent) now emits a
deprecation warning as it will be removed in the version in favor of
including the database number inREDIS_URL(or equivalent) - Added a
FlaskRedis.from_custom_provider(provider)class method for using
any redis provider class that supports instantiation with afrom_url
class method - Added a
strictparameter toFlaskRediswhich expects a boolean value
and allows choosing between usingredis.StrictRedisandredis.Redis
as the default provider. - Made
FlaskRedisregister as a Flask extension through Flask's extension
API - Rewrote test suite in py.test
- Got rid of the hacky attribute copying mechanism in favor of using the
__getattr__magic method to pass calls to the underlying client
v0.0.6
See CHANGELOG for updates.
v0.0.2 Release
- Implemented a very simple test.
- Fixed some documentation issues.
- Included requirements.txt for testing.
- Included task file including some basic methods for tests.
Conception of Project
- Conception
- Initial Commit of Package to GitHub.