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