Updated CHANGES entry for release
[jinja2.git] / CHANGES
1 Jinja2 Changelog
2 ================
3
4 Version 2.5.3
5 -------------
6 (bugfix release, released on October 17th 2010)
7
8 - fixed an operator precedence error introduced in 2.5.2.  Statements
9   like "-foo.bar" had their implicit parentheses applied around the
10   first part of the expression ("(-foo).bar") instead of the more
11   correct "-(foo.bar)".
12
13 Version 2.5.2
14 -------------
15 (bugfix release, released on August 18th 2010)
16
17 - improved setup.py script to better work with assumptions people
18   might still have from it (``--with-speedups``).
19 - fixed a packaging error that excluded the new debug support.
20
21 Version 2.5.1
22 -------------
23 (bugfix release, released on August 17th 2010)
24
25 - StopIteration exceptions raised by functions called from templates
26   are now intercepted and converted to undefineds.  This solves a
27   lot of debugging grief.  (StopIteration is used internally to
28   abort template execution)
29 - improved performance of macro calls slightly.
30 - babel extraction can now properly extract newstyle gettext calls.
31 - using the variable `num` in newstyle gettext for something else
32   than the pluralize count will no longer raise a :exc:`KeyError`.
33 - removed builtin markup class and switched to markupsafe.  For backwards
34   compatibility the pure Python implementation still exists but is
35   pulled from markupsafe by the Jinja2 developers.  The debug support
36   went into a separate feature called "debugsupport" and is disabled
37   by default because it is only relevant for Python 2.4
38 - fixed an issue with unary operators having the wrong precendence.
39
40 Version 2.5
41 -----------
42 (codename Incoherence, relased on May 29th 2010)
43
44 - improved the sort filter (should have worked like this for a
45   long time) by adding support for case insensitive searches.
46 - fixed a bug for getattribute constant folding.
47 - support for newstyle gettext translations which result in a
48   nicer in-template user interface and more consistent
49   catalogs. (:ref:`newstyle-gettext`)
50 - it's now possible to register extensions after an environment
51   was created.
52
53 Version 2.4.1
54 -------------
55 (bugfix release, released on April 20th 2010)
56
57 - fixed an error reporting bug for undefineds.
58
59 Version 2.4
60 -----------
61 (codename Correlation, released on April 13th 2010)
62
63 - the environment template loading functions now transparently
64   pass through a template object if it was passed to it.  This
65   makes it possible to import or extend from a template object
66   that was passed to the template.
67 - added a :class:`ModuleLoader` that can load templates from
68   precompiled sources.  The environment now features a method
69   to compile the templates from a configured loader into a zip
70   file or folder.
71 - the _speedups C extension now supports Python 3.
72 - added support for autoescaping toggling sections and support
73   for evaluation contexts (:ref:`eval-context`).
74 - extensions have a priority now.
75
76 Version 2.3.1
77 -------------
78 (bugfix release, released on February 19th 2010)
79
80 - fixed an error reporting bug on all python versions
81 - fixed an error reporting bug on Python 2.4
82
83 Version 2.3
84 -----------
85 (3000 Pythons, released on February 10th 2010)
86
87 - fixes issue with code generator that causes unbound variables
88   to be generated if set was used in if-blocks and other small
89   identifier problems.
90 - include tags are now able to select between multiple templates
91   and take the first that exists, if a list of templates is
92   given.
93 - fixed a problem with having call blocks in outer scopes that
94   have an argument that is also used as local variable in an
95   inner frame (#360).
96 - greatly improved error message reporting (#339)
97 - implicit tuple expressions can no longer be totally empty.
98   This change makes ``{% if %}...{% endif %}`` a syntax error
99   now. (#364)
100 - added support for translator comments if extracted via babel.
101 - added with-statement extension.
102 - experimental Python 3 support.
103
104 Version 2.2.1
105 -------------
106 (bugfix release, released on September 14th 2009)
107
108 - fixes some smaller problems for Jinja2 on Jython.
109
110 Version 2.2
111 -----------
112 (codename Kong, released on September 13th 2009)
113
114 - Include statements can now be marked with ``ignore missing`` to skip
115   non existing templates.
116 - Priority of `not` raised.  It's now possible to write `not foo in bar`
117   as an alias to `foo not in bar` like in python.  Previously the grammar
118   required parentheses (`not (foo in bar)`) which was odd.
119 - Fixed a bug that caused syntax errors when defining macros or using the
120   `{% call %}` tag inside loops.
121 - Fixed a bug in the parser that made ``{{ foo[1, 2] }}`` impossible.
122 - Made it possible to refer to names from outer scopes in included templates
123   that were unused in the callers frame (#327)
124 - Fixed a bug that caused internal errors if names where used as iteration
125   variable and regular variable *after* the loop if that variable was unused
126   *before* the loop.  (#331)
127 - Added support for optional `scoped` modifier to blocks.
128 - Added support for line-comments.
129 - Added the `meta` module.
130 - Renamed (undocumented) attribute "overlay" to "overlayed" on the
131   environment because it was clashing with a method of the same name.
132 - speedup extension is now disabled by default.
133
134 Version 2.1.1
135 -------------
136 (Bugfix release)
137
138 - Fixed a translation error caused by looping over empty recursive loops.
139
140 Version 2.1
141 -----------
142 (codename Yasuzō, released on November 23rd 2008)
143
144 - fixed a bug with nested loops and the special loop variable.  Before the
145   change an inner loop overwrote the loop variable from the outer one after
146   iteration.
147
148 - fixed a bug with the i18n extension that caused the explicit pluralization
149   block to look up the wrong variable.
150
151 - fixed a limitation in the lexer that made ``{{ foo.0.0 }}`` impossible.
152
153 - index based subscribing of variables with a constant value returns an
154   undefined object now instead of raising an index error.  This was a bug
155   caused by eager optimizing.
156
157 - the i18n extension looks up `foo.ugettext` now followed by `foo.gettext`
158   if an translations object is installed.  This makes dealing with custom
159   translations classes easier.
160
161 - fixed a confusing behavior with conditional extending.  loops were partially
162   executed under some conditions even though they were not part of a visible
163   area.
164
165 - added `sort` filter that works like `dictsort` but for arbitrary sequences.
166
167 - fixed a bug with empty statements in macros.
168
169 - implemented a bytecode cache system.  (:ref:`bytecode-cache`)
170
171 - the template context is now weakref-able
172
173 - inclusions and imports "with context" forward all variables now, not only
174   the initial context.
175
176 - added a cycle helper called `cycler`.
177
178 - added a joining helper called `joiner`.
179
180 - added a `compile_expression` method to the environment that allows compiling
181   of Jinja expressions into callable Python objects.
182
183 - fixed an escaping bug in urlize
184
185 Version 2.0
186 -----------
187 (codename jinjavitus, released on July 17th 2008)
188
189 - the subscribing of objects (looking up attributes and items) changed from
190   slightly.  It's now possible to give attributes or items a higher priority
191   by either using dot-notation lookup or the bracket syntax.  This also
192   changed the AST slightly.  `Subscript` is gone and was replaced with
193   :class:`~jinja2.nodes.Getitem` and :class:`~jinja2.nodes.Getattr`.
194
195   For more information see :ref:`the implementation details <notes-on-subscriptions>`.
196
197 - added support for preprocessing and token stream filtering for extensions.
198   This would allow extensions to allow simplified gettext calls in template
199   data and something similar.
200
201 - added :meth:`jinja2.environment.TemplateStream.dump`.
202
203 - added missing support for implicit string literal concatenation.
204   ``{{ "foo" "bar" }}`` is equivalent to ``{{ "foobar" }}``
205
206 - `else` is optional for conditional expressions.  If not given it evaluates
207   to `false`.
208
209 - improved error reporting for undefined values by providing a position.
210
211 - `filesizeformat` filter uses decimal prefixes now per default and can be
212   set to binary mode with the second parameter.
213
214 - fixed bug in finalizer
215
216 Version 2.0rc1
217 --------------
218 (no codename, released on June 9th 2008)
219
220 - first release of Jinja2