diff options
author | David Lord <davidism@gmail.com> | 2021-11-09 12:28:39 -0800 |
---|---|---|
committer | David Lord <davidism@gmail.com> | 2021-11-09 12:28:39 -0800 |
commit | a42b291bf2a3ac69f978ee88418ca6d0c7879d1e (patch) | |
tree | 48c88330202b9d845161ec463d673c93ab2e54dd /CHANGES.rst | |
parent | b2bc7be67fb2d376b349b1769ba493cee6cedf1d (diff) | |
parent | 2a48dd898d72f1a119ee923996e70aa43da04ea4 (diff) | |
download | jinja2-a42b291bf2a3ac69f978ee88418ca6d0c7879d1e.tar.gz |
Merge branch '3.0.x'
Diffstat (limited to 'CHANGES.rst')
-rw-r--r-- | CHANGES.rst | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/CHANGES.rst b/CHANGES.rst index 14830e0..cedf398 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -6,6 +6,23 @@ Version 3.1.0 Unreleased +Version 3.0.3 +------------- + +Released 2021-11-09 + +- Fix traceback rewriting internals for Python 3.10 and 3.11. + :issue:`1535` +- Fix how the native environment treats leading and trailing spaces + when parsing values on Python 3.10. :pr:`1537` +- Improve async performance by avoiding checks for common types. + :issue:`1514` +- Revert change to ``hash(Node)`` behavior. Nodes are hashed by id + again :issue:`1521` +- ``PackageLoader`` works when the package is a single module file. + :issue:`1512` + + Version 3.0.2 ------------- @@ -414,7 +431,7 @@ Released 2017-01-08 possible. For more information and a discussion see :issue:`641` - Resolved an issue where ``block scoped`` would not take advantage of the new scoping rules. In some more exotic cases a variable - overriden in a local scope would not make it into a block. + overridden in a local scope would not make it into a block. - Change the code generation of the ``with`` statement to be in line with the new scoping rules. This resolves some unlikely bugs in edge cases. This also introduces a new internal ``With`` node that can be |