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 | c6519c1 | 2013-08-07 15:59:07 +0100 | [diff] [blame^] | 4 | Version 2.7.2 |
| 5 | ------------- |
| 6 | (bugfix release, release date to be decided) |
| 7 | |
Armin Ronacher | 5ca2529 | 2013-07-04 16:24:31 +0200 | [diff] [blame] | 8 | Version 2.7.1 |
| 9 | ------------- |
Armin Ronacher | 7253ca4 | 2013-08-07 13:04:00 +0100 | [diff] [blame] | 10 | (bugfix release, released on August 7th 2013) |
Armin Ronacher | 5ca2529 | 2013-07-04 16:24:31 +0200 | [diff] [blame] | 11 | |
Armin Ronacher | 342e88a | 2013-07-04 16:25:04 +0200 | [diff] [blame] | 12 | - Fixed a bug with ``call_filter`` not working properly on environment |
| 13 | and context filters. |
Armin Ronacher | 3d82fc3 | 2013-08-07 12:31:07 +0100 | [diff] [blame] | 14 | - Fixed lack of Python 3 support for bytecode caches. |
Armin Ronacher | ad09fe3 | 2013-08-07 12:41:56 +0100 | [diff] [blame] | 15 | - Reverted support for defining blocks in included templates as this |
| 16 | broke existing templates for users. |
Armin Ronacher | 563fd2e | 2013-08-07 12:48:37 +0100 | [diff] [blame] | 17 | - Fixed some warnings with hashing of undefineds and nodes if Python |
| 18 | is run with warnings for Python 3. |
| 19 | - Added support for properly hashing undefined objects. |
Armin Ronacher | 2ea663b | 2013-08-07 12:53:03 +0100 | [diff] [blame] | 20 | - Fixed a bug with the title filter not working on already uppercase |
| 21 | strings. |
Armin Ronacher | 5ca2529 | 2013-07-04 16:24:31 +0200 | [diff] [blame] | 22 | |
Armin Ronacher | 6fa6cb0 | 2011-09-13 23:27:41 +0200 | [diff] [blame] | 23 | Version 2.7 |
| 24 | ----------- |
Armin Ronacher | fc9b2db | 2013-05-20 14:02:53 +0100 | [diff] [blame] | 25 | (codename Translation, released on May 20th 2013) |
Armin Ronacher | 6fa6cb0 | 2011-09-13 23:27:41 +0200 | [diff] [blame] | 26 | |
| 27 | - Choice and prefix loaders now dispatch source and template lookup |
| 28 | separately in order to work in combination with module loaders as |
| 29 | advertised. |
Armin Ronacher | b1b7b08 | 2011-10-05 09:48:05 +0200 | [diff] [blame] | 30 | - Fixed filesizeformat. |
Armin Ronacher | 1161915 | 2011-12-15 11:50:27 +0100 | [diff] [blame] | 31 | - Added a non-silent option for babel extraction. |
Armin Ronacher | 5145401 | 2012-01-07 17:47:56 +0100 | [diff] [blame] | 32 | - Added `urlencode` filter that automatically quotes values for |
Armin Ronacher | 1d4c638 | 2012-01-07 17:46:40 +0100 | [diff] [blame] | 33 | URL safe usage with utf-8 as only supported encoding. If applications |
| 34 | want to change this encoding they can override the filter. |
W. Trevor King | 7e912c6 | 2013-01-11 08:23:24 -0500 | [diff] [blame] | 35 | - Added `keep-trailing-newline` configuration to environments and |
| 36 | templates to optionally preserve the final trailing newline. |
Armin Ronacher | 99b2285 | 2012-01-25 00:42:54 +0100 | [diff] [blame] | 37 | - Accessing `last` on the loop context no longer causes the iterator |
| 38 | to be consumed into a list. |
Thomas Waldmann | 50f6965 | 2013-05-18 01:07:52 +0200 | [diff] [blame] | 39 | - Python requirement changed: 2.6, 2.7 or >= 3.3 are required now, |
| 40 | supported by same source code, using the "six" compatibility library. |
Armin Ronacher | 9962c10 | 2013-05-18 11:58:12 +0100 | [diff] [blame] | 41 | - Allow `contextfunction` and other decorators to be applied to `__call__`. |
Armin Ronacher | 728d69a | 2013-05-18 12:07:27 +0100 | [diff] [blame] | 42 | - Added support for changing from newline to different signs in the `wordwrap` |
| 43 | filter. |
Armin Ronacher | 840e7e0 | 2013-05-19 11:06:18 +0100 | [diff] [blame] | 44 | - Added support for ignoring memcache errors silently. |
Armin Ronacher | a65f1eb | 2013-05-19 11:18:19 +0100 | [diff] [blame] | 45 | - Added support for keeping the trailing newline in templates. |
Armin Ronacher | 13340f9 | 2013-05-19 11:29:55 +0100 | [diff] [blame] | 46 | - Added finer grained support for stripping whitespace on the left side |
| 47 | of blocks. |
Armin Ronacher | 8eed53c | 2013-05-19 12:25:32 +0100 | [diff] [blame] | 48 | - Added `map`, `select`, `reject`, `selectattr` and `rejectattr` |
| 49 | filters. |
Armin Ronacher | 568352e | 2013-05-20 09:26:57 +0100 | [diff] [blame] | 50 | - Added support for `loop.depth` to figure out how deep inside a recursive |
| 51 | loop the code is. |
Armin Ronacher | dec9194 | 2013-05-20 12:11:02 +0100 | [diff] [blame] | 52 | - Disabled py_compile for pypy and python 3. |
Armin Ronacher | 6fa6cb0 | 2011-09-13 23:27:41 +0200 | [diff] [blame] | 53 | |
Armin Ronacher | 44e1f56 | 2010-10-17 16:43:07 +0200 | [diff] [blame] | 54 | Version 2.6 |
| 55 | ----------- |
Armin Ronacher | 397b42e | 2011-07-24 21:46:07 +0200 | [diff] [blame] | 56 | (codename Convolution, released on July 24th 2011) |
Armin Ronacher | 44e1f56 | 2010-10-17 16:43:07 +0200 | [diff] [blame] | 57 | |
Armin Ronacher | 6a3e95d | 2010-11-19 13:51:38 +0100 | [diff] [blame] | 58 | - internal attributes now raise an internal attribute error now instead |
| 59 | of returning an undefined. This fixes problems when passing undefined |
| 60 | objects to Python semantics expecting APIs. |
Armin Ronacher | 1b6425f | 2010-11-29 12:24:57 +0100 | [diff] [blame] | 61 | - traceback support now works properly for PyPy. (Tested with 1.4) |
Armin Ronacher | a919538 | 2010-11-29 13:21:57 +0100 | [diff] [blame] | 62 | - implemented operator intercepting for sandboxed environments. This |
| 63 | allows application developers to disable builtin operators for better |
| 64 | security. (For instance limit the mathematical operators to actual |
| 65 | integers instead of longs) |
Armin Ronacher | 9573b66 | 2010-12-21 00:44:34 +0100 | [diff] [blame] | 66 | - groupby filter now supports dotted notation for grouping by attributes |
| 67 | of attributes. |
Simon Sapin | 8b5af89 | 2011-07-25 00:25:58 -0700 | [diff] [blame] | 68 | - scoped blocks now properly treat toplevel assignments and imports. |
Armin Ronacher | 5f3d661 | 2010-12-22 23:22:08 +0100 | [diff] [blame] | 69 | Previously an import suddenly "disappeared" in a scoped block. |
Armin Ronacher | 51db6c9 | 2011-01-11 20:53:42 +0100 | [diff] [blame] | 70 | - automatically detect newer Python interpreter versions before loading code |
| 71 | from bytecode caches to prevent segfaults on invalid opcodes. The segfault |
| 72 | in earlier Jinja2 versions here was not a Jinja2 bug but a limitation in |
| 73 | the underlying Python interpreter. If you notice Jinja2 segfaulting in |
| 74 | earlier versions after an upgrade of the Python interpreter you don't have |
| 75 | to upgrade, it's enough to flush the bytecode cache. This just no longer |
| 76 | makes this necessary, Jinja2 will automatically detect these cases now. |
Armin Ronacher | dd8afa2 | 2011-01-24 00:57:58 +0100 | [diff] [blame] | 77 | - the sum filter can now sum up values by attribute. This is a backwards |
| 78 | incompatible change. The argument to the filter previously was the |
| 79 | optional starting index which defaultes to zero. This now became the |
| 80 | second argument to the function because it's rarely used. |
Armin Ronacher | b7e75b8 | 2011-01-24 01:05:47 +0100 | [diff] [blame] | 81 | - like sum, sort now also makes it possible to order items by attribute. |
Armin Ronacher | 3383e1c | 2011-01-24 01:13:51 +0100 | [diff] [blame] | 82 | - like sum and sort, join now also is able to join attributes of objects |
| 83 | as string. |
| 84 | - the internal eval context now has a reference to the environment. |
Armin Ronacher | ee352ec | 2011-05-24 16:40:23 +0200 | [diff] [blame] | 85 | - added a mapping test to see if an object is a dict or an object with |
| 86 | a similar interface. |
Armin Ronacher | 6a3e95d | 2010-11-19 13:51:38 +0100 | [diff] [blame] | 87 | |
Armin Ronacher | 1116573 | 2010-10-18 14:38:03 +0200 | [diff] [blame] | 88 | Version 2.5.5 |
| 89 | ------------- |
| 90 | (re-release of 2.5.4 with built documentation removed for filesize. |
| 91 | Released on October 18th 2010) |
| 92 | |
| 93 | - built documentation is no longer part of release. |
| 94 | |
Armin Ronacher | e104f30 | 2010-10-17 16:42:26 +0200 | [diff] [blame] | 95 | Version 2.5.4 |
| 96 | ------------- |
Armin Ronacher | 75cd04f | 2010-10-17 16:48:18 +0200 | [diff] [blame] | 97 | (bugfix release, released on October 17th 2010) |
Armin Ronacher | e104f30 | 2010-10-17 16:42:26 +0200 | [diff] [blame] | 98 | |
Armin Ronacher | 7b93e7e | 2010-10-17 16:44:19 +0200 | [diff] [blame] | 99 | - Fixed extensions not loading properly with overlays. |
Armin Ronacher | da8d68f | 2010-10-17 16:47:06 +0200 | [diff] [blame] | 100 | - Work around a bug in cpython for the debugger that causes segfaults |
| 101 | on 64bit big-endian architectures. |
Armin Ronacher | 7b93e7e | 2010-10-17 16:44:19 +0200 | [diff] [blame] | 102 | |
Armin Ronacher | 613912d | 2010-10-17 15:53:59 +0200 | [diff] [blame] | 103 | Version 2.5.3 |
| 104 | ------------- |
Armin Ronacher | f858d62 | 2010-10-17 15:56:49 +0200 | [diff] [blame] | 105 | (bugfix release, released on October 17th 2010) |
Armin Ronacher | 613912d | 2010-10-17 15:53:59 +0200 | [diff] [blame] | 106 | |
| 107 | - fixed an operator precedence error introduced in 2.5.2. Statements |
| 108 | like "-foo.bar" had their implicit parentheses applied around the |
| 109 | first part of the expression ("(-foo).bar") instead of the more |
| 110 | correct "-(foo.bar)". |
| 111 | |
Armin Ronacher | 4603694 | 2010-08-18 11:10:50 +0200 | [diff] [blame] | 112 | Version 2.5.2 |
| 113 | ------------- |
| 114 | (bugfix release, released on August 18th 2010) |
| 115 | |
| 116 | - improved setup.py script to better work with assumptions people |
| 117 | might still have from it (``--with-speedups``). |
| 118 | - fixed a packaging error that excluded the new debug support. |
| 119 | |
Armin Ronacher | 02ea18a | 2010-07-01 11:30:42 +0200 | [diff] [blame] | 120 | Version 2.5.1 |
| 121 | ------------- |
Armin Ronacher | dd0039c | 2010-08-17 12:39:40 +0200 | [diff] [blame] | 122 | (bugfix release, released on August 17th 2010) |
Armin Ronacher | 9fb6042 | 2010-06-05 14:41:34 +0200 | [diff] [blame] | 123 | |
| 124 | - StopIteration exceptions raised by functions called from templates |
| 125 | are now intercepted and converted to undefineds. This solves a |
| 126 | lot of debugging grief. (StopIteration is used internally to |
| 127 | abort template execution) |
| 128 | - improved performance of macro calls slightly. |
Armin Ronacher | 4f77a30 | 2010-07-01 12:15:39 +0200 | [diff] [blame] | 129 | - babel extraction can now properly extract newstyle gettext calls. |
| 130 | - using the variable `num` in newstyle gettext for something else |
| 131 | than the pluralize count will no longer raise a :exc:`KeyError`. |
Armin Ronacher | 10c34da | 2010-08-17 12:10:27 +0200 | [diff] [blame] | 132 | - removed builtin markup class and switched to markupsafe. For backwards |
| 133 | compatibility the pure Python implementation still exists but is |
| 134 | pulled from markupsafe by the Jinja2 developers. The debug support |
| 135 | went into a separate feature called "debugsupport" and is disabled |
| 136 | by default because it is only relevant for Python 2.4 |
Armin Ronacher | 2ee64bc | 2010-08-17 12:36:38 +0200 | [diff] [blame] | 137 | - fixed an issue with unary operators having the wrong precendence. |
Armin Ronacher | 9fb6042 | 2010-06-05 14:41:34 +0200 | [diff] [blame] | 138 | |
Armin Ronacher | 4da9034 | 2010-05-29 17:35:10 +0200 | [diff] [blame] | 139 | Version 2.5 |
| 140 | ----------- |
| 141 | (codename Incoherence, relased on May 29th 2010) |
Armin Ronacher | 7379549 | 2010-05-23 23:07:08 +0200 | [diff] [blame] | 142 | |
| 143 | - improved the sort filter (should have worked like this for a |
| 144 | long time) by adding support for case insensitive searches. |
| 145 | - fixed a bug for getattribute constant folding. |
Armin Ronacher | 4da9034 | 2010-05-29 17:35:10 +0200 | [diff] [blame] | 146 | - support for newstyle gettext translations which result in a |
| 147 | nicer in-template user interface and more consistent |
Armin Ronacher | ffaa2e7 | 2010-05-29 20:57:16 +0200 | [diff] [blame] | 148 | catalogs. (:ref:`newstyle-gettext`) |
| 149 | - it's now possible to register extensions after an environment |
| 150 | was created. |
Armin Ronacher | 2ec1d2c | 2010-04-20 13:46:08 +0200 | [diff] [blame] | 151 | |
Armin Ronacher | 800ac7f | 2010-04-20 13:45:11 +0200 | [diff] [blame] | 152 | Version 2.4.1 |
| 153 | ------------- |
| 154 | (bugfix release, released on April 20th 2010) |
| 155 | |
| 156 | - fixed an error reporting bug for undefineds. |
Armin Ronacher | 27387aa | 2010-04-13 00:56:34 +0200 | [diff] [blame] | 157 | |
Armin Ronacher | 559025a | 2010-02-10 02:23:56 +0100 | [diff] [blame] | 158 | Version 2.4 |
| 159 | ----------- |
Armin Ronacher | 30b39cd | 2010-04-13 00:54:14 +0200 | [diff] [blame] | 160 | (codename Correlation, released on April 13th 2010) |
Armin Ronacher | 559025a | 2010-02-10 02:23:56 +0100 | [diff] [blame] | 161 | |
Armin Ronacher | 9165d3e | 2010-02-16 17:35:59 +0100 | [diff] [blame] | 162 | - the environment template loading functions now transparently |
| 163 | pass through a template object if it was passed to it. This |
| 164 | makes it possible to import or extend from a template object |
| 165 | that was passed to the template. |
Armin Ronacher | 64b08a0 | 2010-03-12 03:17:41 +0100 | [diff] [blame] | 166 | - added a :class:`ModuleLoader` that can load templates from |
| 167 | precompiled sources. The environment now features a method |
| 168 | to compile the templates from a configured loader into a zip |
| 169 | file or folder. |
Georg Brandl | 05be95a | 2010-02-21 17:50:32 +0100 | [diff] [blame] | 170 | - the _speedups C extension now supports Python 3. |
Armin Ronacher | fe150f3 | 2010-03-15 02:42:41 +0100 | [diff] [blame] | 171 | - added support for autoescaping toggling sections and support |
| 172 | for evaluation contexts (:ref:`eval-context`). |
Armin Ronacher | 7d29ec6 | 2010-04-12 14:04:35 +0200 | [diff] [blame] | 173 | - extensions have a priority now. |
Georg Brandl | 05be95a | 2010-02-21 17:50:32 +0100 | [diff] [blame] | 174 | |
Armin Ronacher | 549f6b5 | 2010-02-19 11:09:28 +0100 | [diff] [blame] | 175 | Version 2.3.1 |
| 176 | ------------- |
| 177 | (bugfix release, released on February 19th 2010) |
| 178 | |
| 179 | - fixed an error reporting bug on all python versions |
| 180 | - fixed an error reporting bug on Python 2.4 |
| 181 | |
Armin Ronacher | 31bbd9e | 2010-01-14 00:41:30 +0100 | [diff] [blame] | 182 | Version 2.3 |
| 183 | ----------- |
Armin Ronacher | 559025a | 2010-02-10 02:23:56 +0100 | [diff] [blame] | 184 | (3000 Pythons, released on February 10th 2010) |
Armin Ronacher | f1c421d | 2009-09-17 00:48:41 +0200 | [diff] [blame] | 185 | |
| 186 | - fixes issue with code generator that causes unbound variables |
Armin Ronacher | 31bbd9e | 2010-01-14 00:41:30 +0100 | [diff] [blame] | 187 | to be generated if set was used in if-blocks and other small |
| 188 | identifier problems. |
| 189 | - include tags are now able to select between multiple templates |
| 190 | and take the first that exists, if a list of templates is |
| 191 | given. |
Armin Ronacher | e0016f5 | 2010-01-14 01:20:46 +0100 | [diff] [blame] | 192 | - fixed a problem with having call blocks in outer scopes that |
| 193 | have an argument that is also used as local variable in an |
Armin Ronacher | e614e88 | 2010-02-06 15:04:46 +0100 | [diff] [blame] | 194 | inner frame (#360). |
Armin Ronacher | 5dcb724 | 2010-02-06 14:01:26 +0100 | [diff] [blame] | 195 | - greatly improved error message reporting (#339) |
Armin Ronacher | e614e88 | 2010-02-06 15:04:46 +0100 | [diff] [blame] | 196 | - implicit tuple expressions can no longer be totally empty. |
| 197 | This change makes ``{% if %}...{% endif %}`` a syntax error |
| 198 | now. (#364) |
Armin Ronacher | 531578d | 2010-02-06 16:34:54 +0100 | [diff] [blame] | 199 | - added support for translator comments if extracted via babel. |
Armin Ronacher | 9b4cc9f | 2010-02-07 03:55:15 +0100 | [diff] [blame] | 200 | - added with-statement extension. |
Armin Ronacher | 0319c66 | 2010-02-09 02:09:10 +0100 | [diff] [blame] | 201 | - experimental Python 3 support. |
Armin Ronacher | f1c421d | 2009-09-17 00:48:41 +0200 | [diff] [blame] | 202 | |
Armin Ronacher | 9e6400e | 2009-09-14 14:58:01 -0700 | [diff] [blame] | 203 | Version 2.2.1 |
| 204 | ------------- |
| 205 | (bugfix release, released on September 14th 2009) |
| 206 | |
| 207 | - fixes some smaller problems for Jinja2 on Jython. |
| 208 | |
Armin Ronacher | 37f58ce | 2008-12-27 13:10:38 +0100 | [diff] [blame] | 209 | Version 2.2 |
| 210 | ----------- |
Armin Ronacher | 2593fd5 | 2009-09-13 00:23:57 -0700 | [diff] [blame] | 211 | (codename Kong, released on September 13th 2009) |
Armin Ronacher | 37f58ce | 2008-12-27 13:10:38 +0100 | [diff] [blame] | 212 | |
| 213 | - Include statements can now be marked with ``ignore missing`` to skip |
| 214 | non existing templates. |
Armin Ronacher | d89f0f3 | 2009-02-04 18:57:27 +0100 | [diff] [blame] | 215 | - Priority of `not` raised. It's now possible to write `not foo in bar` |
| 216 | as an alias to `foo not in bar` like in python. Previously the grammar |
| 217 | required parentheses (`not (foo in bar)`) which was odd. |
Armin Ronacher | 330fbc0 | 2009-02-04 19:13:58 +0100 | [diff] [blame] | 218 | - Fixed a bug that caused syntax errors when defining macros or using the |
| 219 | `{% call %}` tag inside loops. |
Armin Ronacher | ee2d3c4 | 2009-02-05 23:13:15 +0100 | [diff] [blame] | 220 | - Fixed a bug in the parser that made ``{{ foo[1, 2] }}`` impossible. |
Armin Ronacher | 7887a8c | 2009-02-08 19:11:44 +0100 | [diff] [blame] | 221 | - Made it possible to refer to names from outer scopes in included templates |
| 222 | that were unused in the callers frame (#327) |
Armin Ronacher | 271a0eb | 2009-02-11 22:49:08 +0100 | [diff] [blame] | 223 | - Fixed a bug that caused internal errors if names where used as iteration |
| 224 | variable and regular variable *after* the loop if that variable was unused |
| 225 | *before* the loop. (#331) |
Armin Ronacher | 74a0cd9 | 2009-02-19 15:56:53 +0100 | [diff] [blame] | 226 | - Added support for optional `scoped` modifier to blocks. |
Armin Ronacher | 59b6bd5 | 2009-03-30 21:00:16 +0200 | [diff] [blame] | 227 | - Added support for line-comments. |
Armin Ronacher | 63cf9b8 | 2009-07-26 10:33:36 +0200 | [diff] [blame] | 228 | - Added the `meta` module. |
Armin Ronacher | 98c1fca | 2009-09-13 00:46:59 -0700 | [diff] [blame] | 229 | - Renamed (undocumented) attribute "overlay" to "overlayed" on the |
| 230 | environment because it was clashing with a method of the same name. |
Armin Ronacher | a93df48 | 2009-09-13 10:26:39 -0700 | [diff] [blame] | 231 | - speedup extension is now disabled by default. |
Armin Ronacher | 37f58ce | 2008-12-27 13:10:38 +0100 | [diff] [blame] | 232 | |
Armin Ronacher | cebd838 | 2008-12-25 18:33:46 +0100 | [diff] [blame] | 233 | Version 2.1.1 |
| 234 | ------------- |
| 235 | (Bugfix release) |
| 236 | |
| 237 | - Fixed a translation error caused by looping over empty recursive loops. |
Armin Ronacher | a22a53d | 2007-03-31 20:44:33 +0200 | [diff] [blame] | 238 | |
Armin Ronacher | 237cdde | 2008-07-17 23:34:44 +0200 | [diff] [blame] | 239 | Version 2.1 |
| 240 | ----------- |
Armin Ronacher | 7357f06 | 2008-11-23 12:55:23 +0100 | [diff] [blame] | 241 | (codename Yasuzō, released on November 23rd 2008) |
Armin Ronacher | 237cdde | 2008-07-17 23:34:44 +0200 | [diff] [blame] | 242 | |
Armin Ronacher | ff53c78 | 2008-08-13 18:55:50 +0200 | [diff] [blame] | 243 | - fixed a bug with nested loops and the special loop variable. Before the |
| 244 | change an inner loop overwrote the loop variable from the outer one after |
| 245 | iteration. |
| 246 | |
Armin Ronacher | 4720c36 | 2008-09-06 16:15:38 +0200 | [diff] [blame] | 247 | - fixed a bug with the i18n extension that caused the explicit pluralization |
| 248 | block to look up the wrong variable. |
| 249 | |
Armin Ronacher | cb1b97f | 2008-09-10 14:03:53 +0200 | [diff] [blame] | 250 | - fixed a limitation in the lexer that made ``{{ foo.0.0 }}`` impossible. |
| 251 | |
Armin Ronacher | 5c3c470 | 2008-09-12 23:12:49 +0200 | [diff] [blame] | 252 | - index based subscribing of variables with a constant value returns an |
| 253 | undefined object now instead of raising an index error. This was a bug |
| 254 | caused by eager optimizing. |
| 255 | |
Armin Ronacher | 3213355 | 2008-09-15 14:35:01 +0200 | [diff] [blame] | 256 | - the i18n extension looks up `foo.ugettext` now followed by `foo.gettext` |
| 257 | if an translations object is installed. This makes dealing with custom |
| 258 | translations classes easier. |
| 259 | |
| 260 | - fixed a confusing behavior with conditional extending. loops were partially |
| 261 | executed under some conditions even though they were not part of a visible |
| 262 | area. |
| 263 | |
Armin Ronacher | 205bae5 | 2008-09-17 13:57:45 +0200 | [diff] [blame] | 264 | - added `sort` filter that works like `dictsort` but for arbitrary sequences. |
| 265 | |
Armin Ronacher | f40c884 | 2008-09-17 18:51:26 +0200 | [diff] [blame] | 266 | - fixed a bug with empty statements in macros. |
| 267 | |
Armin Ronacher | a816bf4 | 2008-09-17 21:28:01 +0200 | [diff] [blame] | 268 | - implemented a bytecode cache system. (:ref:`bytecode-cache`) |
| 269 | |
Armin Ronacher | dcc217c | 2008-09-18 18:38:58 +0200 | [diff] [blame] | 270 | - the template context is now weakref-able |
| 271 | |
Armin Ronacher | 673aa88 | 2008-10-04 18:06:57 +0200 | [diff] [blame] | 272 | - inclusions and imports "with context" forward all variables now, not only |
| 273 | the initial context. |
| 274 | |
Armin Ronacher | d34eb12 | 2008-10-13 23:47:51 +0200 | [diff] [blame] | 275 | - added a cycle helper called `cycler`. |
| 276 | |
| 277 | - added a joining helper called `joiner`. |
Armin Ronacher | ccae055 | 2008-10-05 23:08:58 +0200 | [diff] [blame] | 278 | |
Armin Ronacher | ba6e25a | 2008-11-02 15:58:14 +0100 | [diff] [blame] | 279 | - added a `compile_expression` method to the environment that allows compiling |
| 280 | of Jinja expressions into callable Python objects. |
| 281 | |
Armin Ronacher | d9342dc | 2008-11-17 00:35:30 +0100 | [diff] [blame] | 282 | - fixed an escaping bug in urlize |
| 283 | |
Armin Ronacher | 9d472df | 2008-05-04 19:56:34 +0200 | [diff] [blame] | 284 | Version 2.0 |
Armin Ronacher | c689cf1 | 2007-11-18 11:23:58 +0100 | [diff] [blame] | 285 | ----------- |
Armin Ronacher | bf94394 | 2008-07-17 23:32:00 +0200 | [diff] [blame] | 286 | (codename jinjavitus, released on July 17th 2008) |
Armin Ronacher | c689cf1 | 2007-11-18 11:23:58 +0100 | [diff] [blame] | 287 | |
Armin Ronacher | 6dc6f29 | 2008-06-12 08:50:07 +0200 | [diff] [blame] | 288 | - the subscribing of objects (looking up attributes and items) changed from |
| 289 | slightly. It's now possible to give attributes or items a higher priority |
| 290 | by either using dot-notation lookup or the bracket syntax. This also |
| 291 | changed the AST slightly. `Subscript` is gone and was replaced with |
| 292 | :class:`~jinja2.nodes.Getitem` and :class:`~jinja2.nodes.Getattr`. |
| 293 | |
Armin Ronacher | 53db78e | 2008-06-25 20:46:22 +0200 | [diff] [blame] | 294 | For more information see :ref:`the implementation details <notes-on-subscriptions>`. |
Armin Ronacher | 6dc6f29 | 2008-06-12 08:50:07 +0200 | [diff] [blame] | 295 | |
Armin Ronacher | 9ad96e7 | 2008-06-13 22:44:01 +0200 | [diff] [blame] | 296 | - added support for preprocessing and token stream filtering for extensions. |
| 297 | This would allow extensions to allow simplified gettext calls in template |
| 298 | data and something similar. |
| 299 | |
Armin Ronacher | 74b5106 | 2008-06-17 11:28:59 +0200 | [diff] [blame] | 300 | - added :meth:`jinja2.environment.TemplateStream.dump`. |
| 301 | |
Armin Ronacher | 547d0b6 | 2008-07-04 16:35:10 +0200 | [diff] [blame] | 302 | - added missing support for implicit string literal concatenation. |
Armin Ronacher | 4778bda | 2008-06-22 12:48:37 +0200 | [diff] [blame] | 303 | ``{{ "foo" "bar" }}`` is equivalent to ``{{ "foobar" }}`` |
| 304 | |
Armin Ronacher | 547d0b6 | 2008-07-04 16:35:10 +0200 | [diff] [blame] | 305 | - `else` is optional for conditional expressions. If not given it evaluates |
| 306 | to `false`. |
| 307 | |
| 308 | - improved error reporting for undefined values by providing a position. |
| 309 | |
Armin Ronacher | 76f9aa4 | 2008-07-12 02:08:29 +0200 | [diff] [blame] | 310 | - `filesizeformat` filter uses decimal prefixes now per default and can be |
| 311 | set to binary mode with the second parameter. |
| 312 | |
Armin Ronacher | 665bfb8 | 2008-07-14 13:41:46 +0200 | [diff] [blame] | 313 | - fixed bug in finalizer |
| 314 | |
Armin Ronacher | 6dc6f29 | 2008-06-12 08:50:07 +0200 | [diff] [blame] | 315 | Version 2.0rc1 |
| 316 | -------------- |
Armin Ronacher | 0fad031 | 2008-06-27 23:19:09 +0200 | [diff] [blame] | 317 | (no codename, released on June 9th 2008) |
Armin Ronacher | 6dc6f29 | 2008-06-12 08:50:07 +0200 | [diff] [blame] | 318 | |
| 319 | - first release of Jinja2 |