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