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