Moved django configuration into the __main__ section
[jinja2.git] / CHANGES
1 Jinja2 Changelog
2 ===============
3
4 Version 2.1
5 -----------
6 (codename to be selected, release date yet unknown)
7
8 - fixed a bug with nested loops and the special loop variable.  Before the
9   change an inner loop overwrote the loop variable from the outer one after
10   iteration.
11
12 - fixed a bug with the i18n extension that caused the explicit pluralization
13   block to look up the wrong variable.
14
15 - fixed a limitation in the lexer that made ``{{ foo.0.0 }}`` impossible.
16
17 - index based subscribing of variables with a constant value returns an
18   undefined object now instead of raising an index error.  This was a bug
19   caused by eager optimizing.
20
21 - the i18n extension looks up `foo.ugettext` now followed by `foo.gettext`
22   if an translations object is installed.  This makes dealing with custom
23   translations classes easier.
24
25 - fixed a confusing behavior with conditional extending.  loops were partially
26   executed under some conditions even though they were not part of a visible
27   area.
28
29 Version 2.0
30 -----------
31 (codename jinjavitus, released on July 17th 2008)
32
33 - the subscribing of objects (looking up attributes and items) changed from
34   slightly.  It's now possible to give attributes or items a higher priority
35   by either using dot-notation lookup or the bracket syntax.  This also
36   changed the AST slightly.  `Subscript` is gone and was replaced with
37   :class:`~jinja2.nodes.Getitem` and :class:`~jinja2.nodes.Getattr`.
38
39   For more information see :ref:`the implementation details <notes-on-subscriptions>`.
40
41 - added support for preprocessing and token stream filtering for extensions.
42   This would allow extensions to allow simplified gettext calls in template
43   data and something similar.
44
45 - added :meth:`jinja2.environment.TemplateStream.dump`.
46
47 - added missing support for implicit string literal concatenation.
48   ``{{ "foo" "bar" }}`` is equivalent to ``{{ "foobar" }}``
49
50 - `else` is optional for conditional expressions.  If not given it evaluates
51   to `false`.
52
53 - improved error reporting for undefined values by providing a position.
54
55 - `filesizeformat` filter uses decimal prefixes now per default and can be
56   set to binary mode with the second parameter.
57
58 - fixed bug in finalizer
59
60 Version 2.0rc1
61 --------------
62 (no codename, released on June 9th 2008)
63
64 - first release of Jinja2