aboutsummaryrefslogtreecommitdiff
path: root/CHANGES.rst
diff options
context:
space:
mode:
authorDavid Lord <davidism@gmail.com>2019-10-28 09:00:01 -0700
committerDavid Lord <davidism@gmail.com>2019-10-28 09:00:01 -0700
commit32027ea0e608552fda84334bff33e84209b8a056 (patch)
treed0ace44301f77a25ebab5f6f79ad99d55d202c24 /CHANGES.rst
parent9a7dd7b28b50fd8adc019ab2702b50ae5c6ed782 (diff)
downloadjinja-32027ea0e608552fda84334bff33e84209b8a056.tar.gz
creating a NativeTemplate creates a NativeEnvironment
Diffstat (limited to 'CHANGES.rst')
-rw-r--r--CHANGES.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index f64047bd..022da5a6 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -55,6 +55,9 @@ Unreleased
- :class:`~nativetypes.NativeTemplate` correctly handles quotes
between expressions. ``"'{{ a }}', '{{ b }}'"`` renders as the tuple
``('1', '2')`` rather than the string ``'1, 2'``. :issue:`1020`
+- Creating a :class:`~nativetypes.NativeTemplate` directly creates a
+ :class:`~nativetypes.NativeEnvironment` instead of a default
+ :class:`Environment`. :issue:`1091`
- After calling ``LRUCache.copy()``, the copy's queue methods point to
the correct queue. :issue:`843`