blob: 08b316f3d6dab696e1aafa71a5aa5e45f2fb2e11 [file] [log] [blame]
Armin Ronachera22a53d2007-03-31 20:44:33 +02001Jinja Changelog
2===============
3
4Version 1.1
5-----------
6(codename to be selected, release date unknown)
7
8- blocks now support ``{{ super() }}`` to render the parent output.
9
10- debugging system improved, smaller filesize for the cached files.
Armin Ronacher859efe02007-04-05 22:38:44 +020011 Debugging works now well for any module using linecache.
Armin Ronachera22a53d2007-03-31 20:44:33 +020012
Armin Ronacher90a5cb32007-04-15 00:56:32 +020013- ``{{ debug() }}`` can now be used to get a list of filters and
14 tags.
15
Armin Ronachera22a53d2007-03-31 20:44:33 +020016- added whitespace management system for the template designer.
17
18- some small bugfixes.
19
20- improved security system regarding function calls.
21
Armin Ronacher5a8e4972007-04-05 11:21:38 +020022- added `lipsum` function to generate random text.
Armin Ronachera22a53d2007-03-31 20:44:33 +020023
24- strings without unicode characters are processed as binary strings now
25 to workaround problems with `datetime.strftime` which only accepts
26 binary strings.
27
Armin Ronacher40cf47c2007-04-04 13:50:09 +020028- developer friendly traceback is now toggleable
29
30- silent variable name failure is now toggleable
31
Armin Ronacher5a8e4972007-04-05 11:21:38 +020032- fixed issue with old-style classes not implementing `__getitem__`
33 (thanks to Axel Bรถhm for discovering that bug)
34
35- added a bunch of new docstrings to the Jinja classes. Makes fun now to
36 use pydoc :-)
37
Armin Ronacher2acbac12007-04-11 21:49:48 +020038- fixed severe memcaching bug. Formerly it wasn't possible to use memcaching
39 without enabling disk cache.
40
Armin Ronacherd071f952007-04-13 22:32:11 +020041- fixed a bug that allowed users to override the special names `_`, `true` etc.
42
Armin Ronachereec31382007-04-14 14:50:45 +020043- added `batch` and `slice` filters for batching or slicing sequences
44
45- added `sum`, `abs` and `round` filters. This fixes #238
Armin Ronacherd071f952007-04-13 22:32:11 +020046
Armin Ronacher450756b2007-04-15 15:13:59 +020047- added `striptags` and `xmlattr` filters for easier SGML/XML processing
Georg Brandlaf31e4d2007-04-15 00:47:37 +020048
Armin Ronachera22a53d2007-03-31 20:44:33 +020049
50Version 1.0
51-----------
52(released Mar 23, 2007)
53
54- Initial release