summaryrefslogtreecommitdiff
path: root/CHANGES.txt
diff options
context:
space:
mode:
authorChris McDonough <chrism@agendaless.com>2010-09-07 20:27:17 +0000
committerChris McDonough <chrism@agendaless.com>2010-09-07 20:27:17 +0000
commita58c4a4968053314be39aae62eed3c7a9c863e40 (patch)
treeb3bb42fa59ed926e10a9e81cdd57734afb81fe66 /CHANGES.txt
parent6b9e366a4d6d0ac6a0424646e3d2ba32850371b8 (diff)
downloadpyramid-a58c4a4968053314be39aae62eed3c7a9c863e40.tar.gz
pyramid-a58c4a4968053314be39aae62eed3c7a9c863e40.tar.bz2
pyramid-a58c4a4968053314be39aae62eed3c7a9c863e40.zip
- Use ``hash()`` rather than ``id()`` when computing the "phash" of a
custom route/view predicate in order to allow the custom predicate some control over which predicates are "equal". - Use ``response.headerlist.append`` instead of ``response.headers.add`` in ``repoze.bfg.request.add_global_response_headers`` in case the response is not a WebOb response.
Diffstat (limited to 'CHANGES.txt')
-rw-r--r--CHANGES.txt15
1 files changed, 15 insertions, 0 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index ff761cc02..ccc766637 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -1,6 +1,9 @@
Next release
============
+Bug Fixes
+---------
+
- Fix a bug in ``repoze.bfg.url.static_url`` URL generation: if two
resource specifications were used to create two separate static
views, but they shared a common prefix, it was possible that
@@ -9,6 +12,18 @@ Next release
- Fix another bug in ``repoze.bfg.static_url`` URL generation: too
many slashes in generated URL.
+Internal
+--------
+
+- Use ``hash()`` rather than ``id()`` when computing the "phash" of a
+ custom route/view predicate in order to allow the custom predicate
+ some control over which predicates are "equal".
+
+- Use ``response.headerlist.append`` instead of
+ ``response.headers.add`` in
+ ``repoze.bfg.request.add_global_response_headers`` in case the
+ response is not a WebOb response.
+
1.3a11 (2010-09-05)
===================