blob: 0f657309ca69a8252d2e9d458d4bcaa8f3f71403 [file] [log] [blame]
Armin Ronacher9d472df2008-05-04 19:56:34 +02001Jinja2 Changelog
Armin Ronacher5e58d432008-11-23 15:45:13 +01002================
3
Armin Ronacher37f58ce2008-12-27 13:10:38 +01004Version 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.
Armin Ronacherd89f0f32009-02-04 18:57:27 +010010- 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.
Armin Ronacher330fbc02009-02-04 19:13:58 +010013- Fixed a bug that caused syntax errors when defining macros or using the
14 `{% call %}` tag inside loops.
Armin Ronacheree2d3c42009-02-05 23:13:15 +010015- Fixed a bug in the parser that made ``{{ foo[1, 2] }}`` impossible.
Armin Ronacher7887a8c2009-02-08 19:11:44 +010016- Made it possible to refer to names from outer scopes in included templates
17 that were unused in the callers frame (#327)
Armin Ronacher37f58ce2008-12-27 13:10:38 +010018
Armin Ronachercebd8382008-12-25 18:33:46 +010019Version 2.1.1
20-------------
21(Bugfix release)
22
23- Fixed a translation error caused by looping over empty recursive loops.
Armin Ronachera22a53d2007-03-31 20:44:33 +020024
Armin Ronacher237cdde2008-07-17 23:34:44 +020025Version 2.1
26-----------
Armin Ronacher7357f062008-11-23 12:55:23 +010027(codename Yasuzō, released on November 23rd 2008)
Armin Ronacher237cdde2008-07-17 23:34:44 +020028
Armin Ronacherff53c782008-08-13 18:55:50 +020029- fixed a bug with nested loops and the special loop variable. Before the
30 change an inner loop overwrote the loop variable from the outer one after
31 iteration.
32
Armin Ronacher4720c362008-09-06 16:15:38 +020033- fixed a bug with the i18n extension that caused the explicit pluralization
34 block to look up the wrong variable.
35
Armin Ronachercb1b97f2008-09-10 14:03:53 +020036- fixed a limitation in the lexer that made ``{{ foo.0.0 }}`` impossible.
37
Armin Ronacher5c3c4702008-09-12 23:12:49 +020038- index based subscribing of variables with a constant value returns an
39 undefined object now instead of raising an index error. This was a bug
40 caused by eager optimizing.
41
Armin Ronacher32133552008-09-15 14:35:01 +020042- the i18n extension looks up `foo.ugettext` now followed by `foo.gettext`
43 if an translations object is installed. This makes dealing with custom
44 translations classes easier.
45
46- fixed a confusing behavior with conditional extending. loops were partially
47 executed under some conditions even though they were not part of a visible
48 area.
49
Armin Ronacher205bae52008-09-17 13:57:45 +020050- added `sort` filter that works like `dictsort` but for arbitrary sequences.
51
Armin Ronacherf40c8842008-09-17 18:51:26 +020052- fixed a bug with empty statements in macros.
53
Armin Ronachera816bf42008-09-17 21:28:01 +020054- implemented a bytecode cache system. (:ref:`bytecode-cache`)
55
Armin Ronacherdcc217c2008-09-18 18:38:58 +020056- the template context is now weakref-able
57
Armin Ronacher673aa882008-10-04 18:06:57 +020058- inclusions and imports "with context" forward all variables now, not only
59 the initial context.
60
Armin Ronacherd34eb122008-10-13 23:47:51 +020061- added a cycle helper called `cycler`.
62
63- added a joining helper called `joiner`.
Armin Ronacherccae0552008-10-05 23:08:58 +020064
Armin Ronacherba6e25a2008-11-02 15:58:14 +010065- added a `compile_expression` method to the environment that allows compiling
66 of Jinja expressions into callable Python objects.
67
Armin Ronacherd9342dc2008-11-17 00:35:30 +010068- fixed an escaping bug in urlize
69
Armin Ronacher9d472df2008-05-04 19:56:34 +020070Version 2.0
Armin Ronacherc689cf12007-11-18 11:23:58 +010071-----------
Armin Ronacherbf943942008-07-17 23:32:00 +020072(codename jinjavitus, released on July 17th 2008)
Armin Ronacherc689cf12007-11-18 11:23:58 +010073
Armin Ronacher6dc6f292008-06-12 08:50:07 +020074- the subscribing of objects (looking up attributes and items) changed from
75 slightly. It's now possible to give attributes or items a higher priority
76 by either using dot-notation lookup or the bracket syntax. This also
77 changed the AST slightly. `Subscript` is gone and was replaced with
78 :class:`~jinja2.nodes.Getitem` and :class:`~jinja2.nodes.Getattr`.
79
Armin Ronacher53db78e2008-06-25 20:46:22 +020080 For more information see :ref:`the implementation details <notes-on-subscriptions>`.
Armin Ronacher6dc6f292008-06-12 08:50:07 +020081
Armin Ronacher9ad96e72008-06-13 22:44:01 +020082- added support for preprocessing and token stream filtering for extensions.
83 This would allow extensions to allow simplified gettext calls in template
84 data and something similar.
85
Armin Ronacher74b51062008-06-17 11:28:59 +020086- added :meth:`jinja2.environment.TemplateStream.dump`.
87
Armin Ronacher547d0b62008-07-04 16:35:10 +020088- added missing support for implicit string literal concatenation.
Armin Ronacher4778bda2008-06-22 12:48:37 +020089 ``{{ "foo" "bar" }}`` is equivalent to ``{{ "foobar" }}``
90
Armin Ronacher547d0b62008-07-04 16:35:10 +020091- `else` is optional for conditional expressions. If not given it evaluates
92 to `false`.
93
94- improved error reporting for undefined values by providing a position.
95
Armin Ronacher76f9aa42008-07-12 02:08:29 +020096- `filesizeformat` filter uses decimal prefixes now per default and can be
97 set to binary mode with the second parameter.
98
Armin Ronacher665bfb82008-07-14 13:41:46 +020099- fixed bug in finalizer
100
Armin Ronacher6dc6f292008-06-12 08:50:07 +0200101Version 2.0rc1
102--------------
Armin Ronacher0fad0312008-06-27 23:19:09 +0200103(no codename, released on June 9th 2008)
Armin Ronacher6dc6f292008-06-12 08:50:07 +0200104
105- first release of Jinja2