2020-03-21 09:55:14 by Adam Ciarcinski | Files touched by this commit (3) | |
Log message:
py-flask-caching: updated to 1.8.0
Version 1.8.0
- **BREAKING:** Removed support for Python 2. Python 3.5 and upwards are
supported as of now.
- Add option to specify if ``None`` is a cached value or not.
- Allow to use ``__caching_id__`` rather than ``__repr__`` as an object
caching key.
- The RedisCache backend now support generating the key_prefix via a callable.
- Emit a warning if the ``CACHE_TYPE`` is set to ``filesystem`` but no
``CACHE_DIR`` is set.
- Fixes Google App Engine Memcache backend.
- Various documentation updates and fixes.
|
2019-05-29 22:40:56 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-flask-caching: updated to 1.7.2
Version 1.7.2:
- Do not run a cached/memoized function if the cached return value is None.
|
2019-05-07 10:07:01 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-flask-caching: updated to 1.7.1
Version 1.7.1:
- Fix introspecting Python 3 functions by using varkw.
- Remove leftover files (uwsgi.py) in PyPI package.
|
2019-04-09 10:42:19 by Adam Ciarcinski | Files touched by this commit (3) | |
Log message:
py-flask-caching: updated to 1.7.0
Version 1.7.0:
**This is the last version supporting Python 2!**
- Added a feature called 'response_filter' which enables one to only
cache views depending on the response code.
- A DeprecationWarning got turned into a TypeError.
Version 1.6.0:
- The delete_many function is now able to ignore any errors and continue
deleting the cache. However, in order to preserve backwards compatibility,
the default mode is to abort the deletion process. In order to use the new
deletion mode, one has to flip the config setting CACHE_IGNORE_ERRORS to
True. This was and still is only relevant for the **filesystem** and
**simple** cache backends.
- Re-added the gaememcached CACHE_TYPE for improved backwards compatibility.
- Documentation improvements
|
2019-02-25 09:49:12 by Adam Ciarcinski | Files touched by this commit (3) | |
Log message:
py-flask-caching: updated to 1.5.0
Version 1.5.0:
- Add support for a Redis Sentinel Cluster.
- Parameterize the hash function so alternatives can be used.
- Include the deprecated werkzeug.contrib.cache module in Flask-Caching.
|
2018-12-14 11:44:40 by Adam Ciarcinski | Files touched by this commit (4) |
Log message:
py-flask-caching: added version 1.4.0
This is a fork of the Flask-Cache extension. Adds easy cache support to Flask.
|