Armin Ronacher | 9d472df | 2008-05-04 19:56:34 +0200 | [diff] [blame] | 1 | Jinja2 Changelog |
Armin Ronacher | 5e58d43 | 2008-11-23 15:45:13 +0100 | [diff] [blame] | 2 | ================ |
| 3 | |
Armin Ronacher | 31bbd9e | 2010-01-14 00:41:30 +0100 | [diff] [blame^] | 4 | Version 2.3 |
| 5 | ----------- |
| 6 | (codename to be selected, release date to be selected.) |
Armin Ronacher | f1c421d | 2009-09-17 00:48:41 +0200 | [diff] [blame] | 7 | |
| 8 | - fixes issue with code generator that causes unbound variables |
Armin Ronacher | 31bbd9e | 2010-01-14 00:41:30 +0100 | [diff] [blame^] | 9 | to be generated if set was used in if-blocks and other small |
| 10 | identifier problems. |
| 11 | - include tags are now able to select between multiple templates |
| 12 | and take the first that exists, if a list of templates is |
| 13 | given. |
Armin Ronacher | f1c421d | 2009-09-17 00:48:41 +0200 | [diff] [blame] | 14 | |
Armin Ronacher | 9e6400e | 2009-09-14 14:58:01 -0700 | [diff] [blame] | 15 | Version 2.2.1 |
| 16 | ------------- |
| 17 | (bugfix release, released on September 14th 2009) |
| 18 | |
| 19 | - fixes some smaller problems for Jinja2 on Jython. |
| 20 | |
Armin Ronacher | 37f58ce | 2008-12-27 13:10:38 +0100 | [diff] [blame] | 21 | Version 2.2 |
| 22 | ----------- |
Armin Ronacher | 2593fd5 | 2009-09-13 00:23:57 -0700 | [diff] [blame] | 23 | (codename Kong, released on September 13th 2009) |
Armin Ronacher | 37f58ce | 2008-12-27 13:10:38 +0100 | [diff] [blame] | 24 | |
| 25 | - Include statements can now be marked with ``ignore missing`` to skip |
| 26 | non existing templates. |
Armin Ronacher | d89f0f3 | 2009-02-04 18:57:27 +0100 | [diff] [blame] | 27 | - Priority of `not` raised. It's now possible to write `not foo in bar` |
| 28 | as an alias to `foo not in bar` like in python. Previously the grammar |
| 29 | required parentheses (`not (foo in bar)`) which was odd. |
Armin Ronacher | 330fbc0 | 2009-02-04 19:13:58 +0100 | [diff] [blame] | 30 | - Fixed a bug that caused syntax errors when defining macros or using the |
| 31 | `{% call %}` tag inside loops. |
Armin Ronacher | ee2d3c4 | 2009-02-05 23:13:15 +0100 | [diff] [blame] | 32 | - Fixed a bug in the parser that made ``{{ foo[1, 2] }}`` impossible. |
Armin Ronacher | 7887a8c | 2009-02-08 19:11:44 +0100 | [diff] [blame] | 33 | - Made it possible to refer to names from outer scopes in included templates |
| 34 | that were unused in the callers frame (#327) |
Armin Ronacher | 271a0eb | 2009-02-11 22:49:08 +0100 | [diff] [blame] | 35 | - Fixed a bug that caused internal errors if names where used as iteration |
| 36 | variable and regular variable *after* the loop if that variable was unused |
| 37 | *before* the loop. (#331) |
Armin Ronacher | 74a0cd9 | 2009-02-19 15:56:53 +0100 | [diff] [blame] | 38 | - Added support for optional `scoped` modifier to blocks. |
Armin Ronacher | 59b6bd5 | 2009-03-30 21:00:16 +0200 | [diff] [blame] | 39 | - Added support for line-comments. |
Armin Ronacher | 63cf9b8 | 2009-07-26 10:33:36 +0200 | [diff] [blame] | 40 | - Added the `meta` module. |
Armin Ronacher | 98c1fca | 2009-09-13 00:46:59 -0700 | [diff] [blame] | 41 | - Renamed (undocumented) attribute "overlay" to "overlayed" on the |
| 42 | environment because it was clashing with a method of the same name. |
Armin Ronacher | a93df48 | 2009-09-13 10:26:39 -0700 | [diff] [blame] | 43 | - speedup extension is now disabled by default. |
Armin Ronacher | 37f58ce | 2008-12-27 13:10:38 +0100 | [diff] [blame] | 44 | |
Armin Ronacher | cebd838 | 2008-12-25 18:33:46 +0100 | [diff] [blame] | 45 | Version 2.1.1 |
| 46 | ------------- |
| 47 | (Bugfix release) |
| 48 | |
| 49 | - Fixed a translation error caused by looping over empty recursive loops. |
Armin Ronacher | a22a53d | 2007-03-31 20:44:33 +0200 | [diff] [blame] | 50 | |
Armin Ronacher | 237cdde | 2008-07-17 23:34:44 +0200 | [diff] [blame] | 51 | Version 2.1 |
| 52 | ----------- |
Armin Ronacher | 7357f06 | 2008-11-23 12:55:23 +0100 | [diff] [blame] | 53 | (codename Yasuzō, released on November 23rd 2008) |
Armin Ronacher | 237cdde | 2008-07-17 23:34:44 +0200 | [diff] [blame] | 54 | |
Armin Ronacher | ff53c78 | 2008-08-13 18:55:50 +0200 | [diff] [blame] | 55 | - fixed a bug with nested loops and the special loop variable. Before the |
| 56 | change an inner loop overwrote the loop variable from the outer one after |
| 57 | iteration. |
| 58 | |
Armin Ronacher | 4720c36 | 2008-09-06 16:15:38 +0200 | [diff] [blame] | 59 | - fixed a bug with the i18n extension that caused the explicit pluralization |
| 60 | block to look up the wrong variable. |
| 61 | |
Armin Ronacher | cb1b97f | 2008-09-10 14:03:53 +0200 | [diff] [blame] | 62 | - fixed a limitation in the lexer that made ``{{ foo.0.0 }}`` impossible. |
| 63 | |
Armin Ronacher | 5c3c470 | 2008-09-12 23:12:49 +0200 | [diff] [blame] | 64 | - index based subscribing of variables with a constant value returns an |
| 65 | undefined object now instead of raising an index error. This was a bug |
| 66 | caused by eager optimizing. |
| 67 | |
Armin Ronacher | 3213355 | 2008-09-15 14:35:01 +0200 | [diff] [blame] | 68 | - the i18n extension looks up `foo.ugettext` now followed by `foo.gettext` |
| 69 | if an translations object is installed. This makes dealing with custom |
| 70 | translations classes easier. |
| 71 | |
| 72 | - fixed a confusing behavior with conditional extending. loops were partially |
| 73 | executed under some conditions even though they were not part of a visible |
| 74 | area. |
| 75 | |
Armin Ronacher | 205bae5 | 2008-09-17 13:57:45 +0200 | [diff] [blame] | 76 | - added `sort` filter that works like `dictsort` but for arbitrary sequences. |
| 77 | |
Armin Ronacher | f40c884 | 2008-09-17 18:51:26 +0200 | [diff] [blame] | 78 | - fixed a bug with empty statements in macros. |
| 79 | |
Armin Ronacher | a816bf4 | 2008-09-17 21:28:01 +0200 | [diff] [blame] | 80 | - implemented a bytecode cache system. (:ref:`bytecode-cache`) |
| 81 | |
Armin Ronacher | dcc217c | 2008-09-18 18:38:58 +0200 | [diff] [blame] | 82 | - the template context is now weakref-able |
| 83 | |
Armin Ronacher | 673aa88 | 2008-10-04 18:06:57 +0200 | [diff] [blame] | 84 | - inclusions and imports "with context" forward all variables now, not only |
| 85 | the initial context. |
| 86 | |
Armin Ronacher | d34eb12 | 2008-10-13 23:47:51 +0200 | [diff] [blame] | 87 | - added a cycle helper called `cycler`. |
| 88 | |
| 89 | - added a joining helper called `joiner`. |
Armin Ronacher | ccae055 | 2008-10-05 23:08:58 +0200 | [diff] [blame] | 90 | |
Armin Ronacher | ba6e25a | 2008-11-02 15:58:14 +0100 | [diff] [blame] | 91 | - added a `compile_expression` method to the environment that allows compiling |
| 92 | of Jinja expressions into callable Python objects. |
| 93 | |
Armin Ronacher | d9342dc | 2008-11-17 00:35:30 +0100 | [diff] [blame] | 94 | - fixed an escaping bug in urlize |
| 95 | |
Armin Ronacher | 9d472df | 2008-05-04 19:56:34 +0200 | [diff] [blame] | 96 | Version 2.0 |
Armin Ronacher | c689cf1 | 2007-11-18 11:23:58 +0100 | [diff] [blame] | 97 | ----------- |
Armin Ronacher | bf94394 | 2008-07-17 23:32:00 +0200 | [diff] [blame] | 98 | (codename jinjavitus, released on July 17th 2008) |
Armin Ronacher | c689cf1 | 2007-11-18 11:23:58 +0100 | [diff] [blame] | 99 | |
Armin Ronacher | 6dc6f29 | 2008-06-12 08:50:07 +0200 | [diff] [blame] | 100 | - the subscribing of objects (looking up attributes and items) changed from |
| 101 | slightly. It's now possible to give attributes or items a higher priority |
| 102 | by either using dot-notation lookup or the bracket syntax. This also |
| 103 | changed the AST slightly. `Subscript` is gone and was replaced with |
| 104 | :class:`~jinja2.nodes.Getitem` and :class:`~jinja2.nodes.Getattr`. |
| 105 | |
Armin Ronacher | 53db78e | 2008-06-25 20:46:22 +0200 | [diff] [blame] | 106 | For more information see :ref:`the implementation details <notes-on-subscriptions>`. |
Armin Ronacher | 6dc6f29 | 2008-06-12 08:50:07 +0200 | [diff] [blame] | 107 | |
Armin Ronacher | 9ad96e7 | 2008-06-13 22:44:01 +0200 | [diff] [blame] | 108 | - added support for preprocessing and token stream filtering for extensions. |
| 109 | This would allow extensions to allow simplified gettext calls in template |
| 110 | data and something similar. |
| 111 | |
Armin Ronacher | 74b5106 | 2008-06-17 11:28:59 +0200 | [diff] [blame] | 112 | - added :meth:`jinja2.environment.TemplateStream.dump`. |
| 113 | |
Armin Ronacher | 547d0b6 | 2008-07-04 16:35:10 +0200 | [diff] [blame] | 114 | - added missing support for implicit string literal concatenation. |
Armin Ronacher | 4778bda | 2008-06-22 12:48:37 +0200 | [diff] [blame] | 115 | ``{{ "foo" "bar" }}`` is equivalent to ``{{ "foobar" }}`` |
| 116 | |
Armin Ronacher | 547d0b6 | 2008-07-04 16:35:10 +0200 | [diff] [blame] | 117 | - `else` is optional for conditional expressions. If not given it evaluates |
| 118 | to `false`. |
| 119 | |
| 120 | - improved error reporting for undefined values by providing a position. |
| 121 | |
Armin Ronacher | 76f9aa4 | 2008-07-12 02:08:29 +0200 | [diff] [blame] | 122 | - `filesizeformat` filter uses decimal prefixes now per default and can be |
| 123 | set to binary mode with the second parameter. |
| 124 | |
Armin Ronacher | 665bfb8 | 2008-07-14 13:41:46 +0200 | [diff] [blame] | 125 | - fixed bug in finalizer |
| 126 | |
Armin Ronacher | 6dc6f29 | 2008-06-12 08:50:07 +0200 | [diff] [blame] | 127 | Version 2.0rc1 |
| 128 | -------------- |
Armin Ronacher | 0fad031 | 2008-06-27 23:19:09 +0200 | [diff] [blame] | 129 | (no codename, released on June 9th 2008) |
Armin Ronacher | 6dc6f29 | 2008-06-12 08:50:07 +0200 | [diff] [blame] | 130 | |
| 131 | - first release of Jinja2 |