forked from sean-/flask-cache
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCHANGES
More file actions
39 lines (28 loc) · 882 Bytes
/
CHANGES
File metadata and controls
39 lines (28 loc) · 882 Bytes
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
Changelog
---------
Version 0.3.3 (not released yet)
````````````````````````````````
Uses base64 for memoize caching. This fixes rare issues where the cache_key
was either a tuple or larger than the caching backend would be able to
support.
Version 0.3.2
`````````````
Bugfix release. Fixes a bug that would cause an exception if no
``CACHE_TYPE`` was supplied.
Version 0.3.1
`````````````
Pypi egg fix.
Version 0.3
```````````
- CACHE_TYPE changed. Now one of ['null', 'simple', 'memcached',
'gaememcached', 'filesystem'], or an import string to a function that will
instantiate a cache object. This allows Flask-Cache to be much more
extensible and configurable.
Version 0.2
```````````
- CACHE_TYPE now uses an import_string.
- Added CACHE_OPTIONS and CACHE_ARGS configuration values.
- Added delete_memoized
Version 0.1
```````````
- Initial public release