summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBlaise Laflamme <blaise@laflamme.org>2013-08-14 00:04:46 -0400
committerBlaise Laflamme <blaise@laflamme.org>2013-08-14 00:04:46 -0400
commit24c932646ace774d39341bc52cfa01ef84eeede5 (patch)
tree8b7b48b285605b7f202e7898034b9c2f9e04cf07
parent96df8d5c511ec6742873b3e86d3c875899dc77e3 (diff)
downloadpyramid-24c932646ace774d39341bc52cfa01ef84eeede5.tar.gz
pyramid-24c932646ace774d39341bc52cfa01ef84eeede5.tar.bz2
pyramid-24c932646ace774d39341bc52cfa01ef84eeede5.zip
added bug fix to changes
-rw-r--r--CHANGES.txt16
1 files changed, 10 insertions, 6 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 0479e3011..84f3aaf54 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -133,6 +133,10 @@ Features
Bug Fixes
---------
+- Fixed a Mako renderer bug returning a tuple with a previous defname value
+in some circumstances. See https://github.com/Pylons/pyramid/issues/1037 for
+more information.
+
- Make the ``pyramid.config.assets.PackageOverrides`` object implement the API
for ``__loader__`` objects specified in PEP 302. Proxies to the
``__loader__`` set by the importer, if present; otherwise, raises
@@ -270,7 +274,7 @@ Features
@subscriber(SomeOtherEvent)
def asubscriber(event):
pass
-
+
And you wanted to use a subscriber predicate::
@subscriber([SomeEvent, SomeContextType], mypredicate=True)
@@ -344,7 +348,7 @@ Features
@subscriber([SomeContextType, SomeEvent])
def asubscriber(event):
- # bzzt! you'll be getting the context here as ``event``, and it'll
+ # bzzt! you'll be getting the context here as ``event``, and it'll
# be useless
Existing multiple-argument subscribers continue to work without issue, so you
@@ -614,7 +618,7 @@ Bug Fixes
https://github.com/Pylons/pyramid/issues/606
https://github.com/Pylons/pyramid/issues/607
-- In Mako Templates lookup, check for absolute uri (using mako directories)
+- In Mako Templates lookup, check for absolute uri (using mako directories)
when mixing up inheritance with asset specs.
https://github.com/Pylons/pyramid/issues/662
@@ -833,13 +837,13 @@ Backwards Incompatibilities
* ``registerAdapter``, use
``pyramid.config.Configurator.registry.registerAdapter`` instead.
- * ``registerSubscriber``, use
+ * ``registerSubscriber``, use
``pyramid.config.Configurator.add_subscriber`` instead.
- * ``registerRoute``, use
+ * ``registerRoute``, use
``pyramid.config.Configurator.add_route`` instead.
- * ``registerSettings``, use
+ * ``registerSettings``, use
``pyramid.config.Configurator.add_settings`` instead.
- In Pyramid 1.3 and previous, the ``__call__`` method of a Response object