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