ba5160d2d32ffc96a51c65602789bfd7cb05217f
[django-ssify.git] / CHANGELOG.md
1 # Changelog
2
3 ## 0.2.5 (2015-04-16)
4
5 * Unescape var values in render middleware.
6
7 * Test on pypy.
8
9
10 ## 0.2.4 (2015-04-16)
11
12 * Django 1.8 compatibility.
13
14 * Remove private headers from response.
15
16 * Python-3 compatible get_version.
17
18
19 ## 0.2.3 (2014-09-22)
20
21 * Don't assume request object we are passed at any point still has
22   our custom attributes.
23
24
25 ## 0.2.2 (2014-09-19)
26
27 * Return 404 from ssi_included views with unsupported languages.
28
29 * Set zip_safe=False, so egg loader middleware isn't required.
30
31
32 ## 0.2.1 (2014-09-15)
33
34 * Fix packaging errors.
35
36
37 ## 0.2 (2014-09-15)
38
39 * Nicer cache choosing: use settings.SSIFY_CACHE_ALIASES if set,
40   otherwise use 'ssify' cache if configure, otherwise
41   fall back to 'default'.
42
43 * Renamed `csrf_token` template tag to `ssi_csrf_token` to avoid
44   simple mistakes.
45
46 * Cache control: `ssi_variable` now takes `patch_response` instead
47   of `vary` parameter, `ssi_include` takes `timeout`, `version` and
48   also `patch_reponse` parameters.  Also added some helper functions
49   in ssify.utils.
50
51 * Added `flush_ssi_includes` function.
52
53 * Debug rendering: renamed SSIFY_DEBUG to SSIFY_RENDER, added support
54   for including streaming responses when SSIFY_RENDER=True.
55
56 * Dropped Django 1.4 support.
57
58
59 ## 0.1 (2014-09-02)
60
61 * Initial release.