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