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