Changes between Initial Version and Version 1 of Ticket #5038, comment 1


Ignore:
Timestamp:
03/25/2022 03:19:55 PM (2 years ago)
Author:
Bruce Dubbs

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #5038, comment 1

    initial v1  
    11Version 3.1.0
    22
    3 - Drop support for Python 3.6. `#1534`
    4 - Remove previously deprecated code. `#1544`
     3- Drop support for Python 3.6.
     4- Remove previously deprecated code.
    55  - WithExtension and AutoEscapeExtension are built-in now.
    66  - contextfilter and contextfunction are replaced by pass_context. evalcontextfilter and evalcontextfunction are replaced by pass_eval_context. environmentfilter and environmentfunction are replaced by pass_environment.
     
    99  - Legacy resolve mode for Context subclasses is no longer supported. Override resolve_or_missing instead of resolve.
    1010  - unicode_urlencode is renamed to url_quote.
    11 - Add support for native types in macros. `#1510`
    12 - The `{% trans %}` tag can use pgettext and npgettext by passing a context string as the first token in the tag, like `{% trans "title" %}`. `#1430`
    13 - Update valid identifier characters from Python 3.6 to 3.7. `#1571`
    14 - Filters and tests decorated with `@async_variant` are pickleable. `#1612`
    15 - Add items filter. `#1561`
    16 - Subscriptions (`[0]`, etc.) can be used after filters, tests, and calls when the environment is in async mode. `#1573`
    17 - The groupby filter is case-insensitive by default, matching other comparison filters. Added the case_sensitive parameter to control this. `#1463`
    18 - Windows drive-relative path segments in template names will not result in FileSystemLoader and PackageLoader loading from drive-relative paths. `#1621`
     11- Add support for native types in macros.
     12- The `{% trans %}` tag can use pgettext and npgettext by passing a context string as the first token in the tag, like `{% trans "title" %}`.
     13- Update valid identifier characters from Python 3.6 to 3.7.
     14- Filters and tests decorated with `@async_variant` are pickleable.
     15- Add items filter.
     16- Subscriptions (`[0]`, etc.) can be used after filters, tests, and calls when the environment is in async mode.
     17- The groupby filter is case-insensitive by default, matching other comparison filters. Added the case_sensitive parameter to control this.
     18- Windows drive-relative path segments in template names will not result in FileSystemLoader and PackageLoader loading from drive-relative paths.