-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCHANGES
53 lines (34 loc) · 1.53 KB
/
CHANGES
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
Changelog
=========
Version 1.1.0
-------------
- `coredis` Python dependency (used in async) upgrade to version 3.0+ - Thanks @alisaifee!
- Dropping support for Python 3.6
Version 1.0.1
-------------
- Documentation fix - AsyncBackend API reference was missing
Version 1.0.0
-------------
- Async support has been added
- Switching CI from Travis to GitHub Actions
Version 0.3.4
-------------
- Falcon 3.0.0 has renamed the `Response.body` to `Response.text`
Version 0.3.3
-------------
- Fixing the issue with multiple decorators when `@cache.cached()` is not the topmost one
- Fixing document readability issues in Sphinx
Version 0.3.1
-------------
- Added a new memoize() method to cache arbitrary methods with their arguments
Version 0.3.0
-------------
- `Cache.memoize()` and `Cache.delete_memoized()` methods were added to allow you to cache the result of other non-resource related functions with their argurments.
Version 0.2.0
-------------
- The ``Content-Type`` header is cached now, except when this is turned off by the ``CACHE_CONTENT_TYPE_JSON_ONLY`` setting, `see <https://github.com/zoltan-fedor/falcon-caching/issues/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 <https://github.com/zoltan-fedor/falcon-caching/issues/4>`_
- The `request_body` is no longer included in the cache key, `see <https://github.com/zoltan-fedor/falcon-caching/issues/3>`_
Version 0.1.0
-------------
- Initial public release