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