Added tag 2.3 for changeset be1b1d6ac4fc
[jinja2.git] / CHANGES
1 Jinja2 Changelog
2 ================
3
4 Version 2.3
5 -----------
6 (codename to be selected, release date will be February 9th 2010)
7
8 - fixes issue with code generator that causes unbound variables
9   to be generated if set was used in if-blocks and other small
10   identifier problems.
11 - include tags are now able to select between multiple templates
12   and take the first that exists, if a list of templates is
13   given.
14 - fixed a problem with having call blocks in outer scopes that
15   have an argument that is also used as local variable in an
16   inner frame (#360).
17 - greatly improved error message reporting (#339)
18 - implicit tuple expressions can no longer be totally empty.
19   This change makes ``{% if %}...{% endif %}`` a syntax error
20   now. (#364)
21 - added support for translator comments if extracted via babel.
22 - added with-statement extension.
23 - experimental Python 3 support.
24
25 Version 2.2.1
26 -------------
27 (bugfix release, released on September 14th 2009)
28
29 - fixes some smaller problems for Jinja2 on Jython.
30
31 Version 2.2
32 -----------
33 (codename Kong, released on September 13th 2009)
34
35 - Include statements can now be marked with ``ignore missing`` to skip
36   non existing templates.
37 - Priority of `not` raised.  It's now possible to write `not foo in bar`
38   as an alias to `foo not in bar` like in python.  Previously the grammar
39   required parentheses (`not (foo in bar)`) which was odd.
40 - Fixed a bug that caused syntax errors when defining macros or using the
41   `{% call %}` tag inside loops.
42 - Fixed a bug in the parser that made ``{{ foo[1, 2] }}`` impossible.
43 - Made it possible to refer to names from outer scopes in included templates
44   that were unused in the callers frame (#327)
45 - Fixed a bug that caused internal errors if names where used as iteration
46   variable and regular variable *after* the loop if that variable was unused
47   *before* the loop.  (#331)
48 - Added support for optional `scoped` modifier to blocks.
49 - Added support for line-comments.
50 - Added the `meta` module.
51 - Renamed (undocumented) attribute "overlay" to "overlayed" on the
52   environment because it was clashing with a method of the same name.
53 - speedup extension is now disabled by default.
54
55 Version 2.1.1
56 -------------
57 (Bugfix release)
58
59 - Fixed a translation error caused by looping over empty recursive loops.
60
61 Version 2.1
62 -----------
63 (codename Yasuzō, released on November 23rd 2008)
64
65 - fixed a bug with nested loops and the special loop variable.  Before the
66   change an inner loop overwrote the loop variable from the outer one after
67   iteration.
68
69 - fixed a bug with the i18n extension that caused the explicit pluralization
70   block to look up the wrong variable.
71
72 - fixed a limitation in the lexer that made ``{{ foo.0.0 }}`` impossible.
73
74 - index based subscribing of variables with a constant value returns an
75   undefined object now instead of raising an index error.  This was a bug
76   caused by eager optimizing.
77
78 - the i18n extension looks up `foo.ugettext` now followed by `foo.gettext`
79   if an translations object is installed.  This makes dealing with custom
80   translations classes easier.
81
82 - fixed a confusing behavior with conditional extending.  loops were partially
83   executed under some conditions even though they were not part of a visible
84   area.
85
86 - added `sort` filter that works like `dictsort` but for arbitrary sequences.
87
88 - fixed a bug with empty statements in macros.
89
90 - implemented a bytecode cache system.  (:ref:`bytecode-cache`)
91
92 - the template context is now weakref-able
93
94 - inclusions and imports "with context" forward all variables now, not only
95   the initial context.
96
97 - added a cycle helper called `cycler`.
98
99 - added a joining helper called `joiner`.
100
101 - added a `compile_expression` method to the environment that allows compiling
102   of Jinja expressions into callable Python objects.
103
104 - fixed an escaping bug in urlize
105
106 Version 2.0
107 -----------
108 (codename jinjavitus, released on July 17th 2008)
109
110 - the subscribing of objects (looking up attributes and items) changed from
111   slightly.  It's now possible to give attributes or items a higher priority
112   by either using dot-notation lookup or the bracket syntax.  This also
113   changed the AST slightly.  `Subscript` is gone and was replaced with
114   :class:`~jinja2.nodes.Getitem` and :class:`~jinja2.nodes.Getattr`.
115
116   For more information see :ref:`the implementation details <notes-on-subscriptions>`.
117
118 - added support for preprocessing and token stream filtering for extensions.
119   This would allow extensions to allow simplified gettext calls in template
120   data and something similar.
121
122 - added :meth:`jinja2.environment.TemplateStream.dump`.
123
124 - added missing support for implicit string literal concatenation.
125   ``{{ "foo" "bar" }}`` is equivalent to ``{{ "foobar" }}``
126
127 - `else` is optional for conditional expressions.  If not given it evaluates
128   to `false`.
129
130 - improved error reporting for undefined values by providing a position.
131
132 - `filesizeformat` filter uses decimal prefixes now per default and can be
133   set to binary mode with the second parameter.
134
135 - fixed bug in finalizer
136
137 Version 2.0rc1
138 --------------
139 (no codename, released on June 9th 2008)
140
141 - first release of Jinja2