summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Merickel <michael@merickel.org>2015-02-11 00:25:53 -0600
committerMichael Merickel <michael@merickel.org>2015-02-11 00:25:53 -0600
commit06bb4a4db67321e7629f4f2438516ba358f226e9 (patch)
tree761d094306c4391724ea31e22130d779139ce75b
parentb6e148dc678cad3bc63d64f41385114134e017be (diff)
downloadpyramid-06bb4a4db67321e7629f4f2438516ba358f226e9.tar.gz
pyramid-06bb4a4db67321e7629f4f2438516ba358f226e9.tar.bz2
pyramid-06bb4a4db67321e7629f4f2438516ba358f226e9.zip
update changelog
-rw-r--r--CHANGES.txt7
1 files changed, 7 insertions, 0 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 2dee64a84..95566a54b 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -128,6 +128,13 @@ Bug Fixes
- Prevent "parameters to load are deprecated" ``DeprecationWarning``
from setuptools>=11.3. See https://github.com/Pylons/pyramid/pull/1541
+- Avoiding sharing the ``IRenderer`` objects across threads when attached to
+ a view using the `renderer=` argument. These renderers were instantiated
+ at time of first render and shared between requests, causing potentially
+ subtle effects like `pyramid.reload_templates = true` failing to work
+ in `pyramid_mako`. See https://github.com/Pylons/pyramid/pull/1575
+ and https://github.com/Pylons/pyramid/issues/1268
+
Deprecations
------------