Releases: zoltan-fedor/falcon-caching
Releases · zoltan-fedor/falcon-caching
1.1.0
coredis
Python dependency (used in async) upgrade to version 3.0+ - Thanks @alisaifee!- Dropping support for Python 3.6
1.0.2
- adding a shim
setup.py
to allow editable install withpip
1.0.1
- Documentation fix - AsyncBackend API reference was missing
1.0.0
- Async support has been added
- Switching CI from Travis to GitHub Actions
0.3.4
Falcon 3.0.0 has renamed the Response.body
to Response.text
0.3.3
- Fixing the issue with multiple decorators when
@cache.cached()
is not the topmost one - Fixing document readability issues in Sphinx
0.3.1
Cache.memoize()
andCache.delete_memoized()
methods were added to allow you to cache the result of other non-resource related functions with their argurments.
0.2.0
- The
Content-Type
header is cached now, except when this is turned off by theCACHE_CONTENT_TYPE_JSON_ONLY
setting, see #2 and in the docs https://falcon-caching.readthedocs.io/en/latest/index.html#what-gets-cached - Added a safer method to identify the
on_
methods to decorate, see #4 - The
request_body
is no longer included in the cache key, see #3
0.1.1
Initial release