Armin Ronacher | 9d472df | 2008-05-04 19:56:34 +0200 | [diff] [blame] | 1 | Jinja2 Changelog |
Armin Ronacher | a22a53d | 2007-03-31 20:44:33 +0200 | [diff] [blame] | 2 | =============== |
| 3 | |
Armin Ronacher | 237cdde | 2008-07-17 23:34:44 +0200 | [diff] [blame] | 4 | Version 2.1 |
| 5 | ----------- |
| 6 | (codename to be selected, release date yet unknown) |
| 7 | |
Armin Ronacher | ff53c78 | 2008-08-13 18:55:50 +0200 | [diff] [blame] | 8 | - fixed a bug with nested loops and the special loop variable. Before the |
| 9 | change an inner loop overwrote the loop variable from the outer one after |
| 10 | iteration. |
| 11 | |
Armin Ronacher | 4720c36 | 2008-09-06 16:15:38 +0200 | [diff] [blame] | 12 | - fixed a bug with the i18n extension that caused the explicit pluralization |
| 13 | block to look up the wrong variable. |
| 14 | |
Armin Ronacher | cb1b97f | 2008-09-10 14:03:53 +0200 | [diff] [blame] | 15 | - fixed a limitation in the lexer that made ``{{ foo.0.0 }}`` impossible. |
| 16 | |
Armin Ronacher | 5c3c470 | 2008-09-12 23:12:49 +0200 | [diff] [blame] | 17 | - index based subscribing of variables with a constant value returns an |
| 18 | undefined object now instead of raising an index error. This was a bug |
| 19 | caused by eager optimizing. |
| 20 | |
Armin Ronacher | 3213355 | 2008-09-15 14:35:01 +0200 | [diff] [blame] | 21 | - the i18n extension looks up `foo.ugettext` now followed by `foo.gettext` |
| 22 | if an translations object is installed. This makes dealing with custom |
| 23 | translations classes easier. |
| 24 | |
| 25 | - fixed a confusing behavior with conditional extending. loops were partially |
| 26 | executed under some conditions even though they were not part of a visible |
| 27 | area. |
| 28 | |
Armin Ronacher | 205bae5 | 2008-09-17 13:57:45 +0200 | [diff] [blame] | 29 | - added `sort` filter that works like `dictsort` but for arbitrary sequences. |
| 30 | |
Armin Ronacher | f40c884 | 2008-09-17 18:51:26 +0200 | [diff] [blame] | 31 | - fixed a bug with empty statements in macros. |
| 32 | |
Armin Ronacher | a816bf4 | 2008-09-17 21:28:01 +0200 | [diff] [blame] | 33 | - implemented a bytecode cache system. (:ref:`bytecode-cache`) |
| 34 | |
Armin Ronacher | dcc217c | 2008-09-18 18:38:58 +0200 | [diff] [blame] | 35 | - the template context is now weakref-able |
| 36 | |
Armin Ronacher | 673aa88 | 2008-10-04 18:06:57 +0200 | [diff] [blame] | 37 | - inclusions and imports "with context" forward all variables now, not only |
| 38 | the initial context. |
| 39 | |
Armin Ronacher | d34eb12 | 2008-10-13 23:47:51 +0200 | [diff] [blame] | 40 | - added a cycle helper called `cycler`. |
| 41 | |
| 42 | - added a joining helper called `joiner`. |
Armin Ronacher | ccae055 | 2008-10-05 23:08:58 +0200 | [diff] [blame] | 43 | |
Armin Ronacher | ba6e25a | 2008-11-02 15:58:14 +0100 | [diff] [blame] | 44 | - added a `compile_expression` method to the environment that allows compiling |
| 45 | of Jinja expressions into callable Python objects. |
| 46 | |
Armin Ronacher | d9342dc | 2008-11-17 00:35:30 +0100 | [diff] [blame^] | 47 | - fixed an escaping bug in urlize |
| 48 | |
Armin Ronacher | 9d472df | 2008-05-04 19:56:34 +0200 | [diff] [blame] | 49 | Version 2.0 |
Armin Ronacher | c689cf1 | 2007-11-18 11:23:58 +0100 | [diff] [blame] | 50 | ----------- |
Armin Ronacher | bf94394 | 2008-07-17 23:32:00 +0200 | [diff] [blame] | 51 | (codename jinjavitus, released on July 17th 2008) |
Armin Ronacher | c689cf1 | 2007-11-18 11:23:58 +0100 | [diff] [blame] | 52 | |
Armin Ronacher | 6dc6f29 | 2008-06-12 08:50:07 +0200 | [diff] [blame] | 53 | - the subscribing of objects (looking up attributes and items) changed from |
| 54 | slightly. It's now possible to give attributes or items a higher priority |
| 55 | by either using dot-notation lookup or the bracket syntax. This also |
| 56 | changed the AST slightly. `Subscript` is gone and was replaced with |
| 57 | :class:`~jinja2.nodes.Getitem` and :class:`~jinja2.nodes.Getattr`. |
| 58 | |
Armin Ronacher | 53db78e | 2008-06-25 20:46:22 +0200 | [diff] [blame] | 59 | For more information see :ref:`the implementation details <notes-on-subscriptions>`. |
Armin Ronacher | 6dc6f29 | 2008-06-12 08:50:07 +0200 | [diff] [blame] | 60 | |
Armin Ronacher | 9ad96e7 | 2008-06-13 22:44:01 +0200 | [diff] [blame] | 61 | - added support for preprocessing and token stream filtering for extensions. |
| 62 | This would allow extensions to allow simplified gettext calls in template |
| 63 | data and something similar. |
| 64 | |
Armin Ronacher | 74b5106 | 2008-06-17 11:28:59 +0200 | [diff] [blame] | 65 | - added :meth:`jinja2.environment.TemplateStream.dump`. |
| 66 | |
Armin Ronacher | 547d0b6 | 2008-07-04 16:35:10 +0200 | [diff] [blame] | 67 | - added missing support for implicit string literal concatenation. |
Armin Ronacher | 4778bda | 2008-06-22 12:48:37 +0200 | [diff] [blame] | 68 | ``{{ "foo" "bar" }}`` is equivalent to ``{{ "foobar" }}`` |
| 69 | |
Armin Ronacher | 547d0b6 | 2008-07-04 16:35:10 +0200 | [diff] [blame] | 70 | - `else` is optional for conditional expressions. If not given it evaluates |
| 71 | to `false`. |
| 72 | |
| 73 | - improved error reporting for undefined values by providing a position. |
| 74 | |
Armin Ronacher | 76f9aa4 | 2008-07-12 02:08:29 +0200 | [diff] [blame] | 75 | - `filesizeformat` filter uses decimal prefixes now per default and can be |
| 76 | set to binary mode with the second parameter. |
| 77 | |
Armin Ronacher | 665bfb8 | 2008-07-14 13:41:46 +0200 | [diff] [blame] | 78 | - fixed bug in finalizer |
| 79 | |
Armin Ronacher | 6dc6f29 | 2008-06-12 08:50:07 +0200 | [diff] [blame] | 80 | Version 2.0rc1 |
| 81 | -------------- |
Armin Ronacher | 0fad031 | 2008-06-27 23:19:09 +0200 | [diff] [blame] | 82 | (no codename, released on June 9th 2008) |
Armin Ronacher | 6dc6f29 | 2008-06-12 08:50:07 +0200 | [diff] [blame] | 83 | |
| 84 | - first release of Jinja2 |