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