summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris McDonough <chrism@agendaless.com>2010-07-14 13:31:19 +0000
committerChris McDonough <chrism@agendaless.com>2010-07-14 13:31:19 +0000
commit76fbb36cd65b7361218d2855b1555a1780566146 (patch)
tree9832c7f6c8acf875b3aea5f9969c0aad53a20777
parent465f18df135db19b6e7a9abd359c4652eebb2230 (diff)
downloadpyramid-76fbb36cd65b7361218d2855b1555a1780566146.tar.gz
pyramid-76fbb36cd65b7361218d2855b1555a1780566146.tar.bz2
pyramid-76fbb36cd65b7361218d2855b1555a1780566146.zip
Describe bw incompatibilities
-rw-r--r--CHANGES.txt7
-rw-r--r--docs/whatsnew-1.3.rst8
2 files changed, 12 insertions, 3 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index b9de1f891..0eecc49d4 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -22,6 +22,13 @@ Bug Fixes
1.3a4, view names that contained a slash were supported as route
prefixes. 1.3a4 broke this by trying to treat them as full URLs.
+Backwards Incompatibilities
+----------------------------
+
+- in previous releases, when a URL could not be decoded from UTF-8
+ during traversal, a ``TypeError`` was raised. Now the error which
+ is raised is a ``repoze.bfg.exceptions.URLDecodeError``.
+
1.3a4 (2010-07-03)
==================
diff --git a/docs/whatsnew-1.3.rst b/docs/whatsnew-1.3.rst
index e903c336e..3443f15ab 100644
--- a/docs/whatsnew-1.3.rst
+++ b/docs/whatsnew-1.3.rst
@@ -158,10 +158,12 @@ Minor Feature Additions
media package-internal and served by the development webserver
during development.
-Backwards Incompatibilites
---------------------------
+Backwards Incompatibilities
+---------------------------
-N/A
+- In previous releases, when a URL could not be decoded from UTF-8
+ during traversal, a :exc:`TypeError` was raised. Now the error
+ which is raised is :exc:`repoze.bfg.exceptions.URLDecodeError`.
Deprecations and Behavior Differences
-------------------------------------