summaryrefslogtreecommitdiff
path: root/CHANGES.txt
diff options
context:
space:
mode:
Diffstat (limited to 'CHANGES.txt')
-rw-r--r--CHANGES.txt13
1 files changed, 12 insertions, 1 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index abd884923..8eea97d1f 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -1,5 +1,13 @@
Next Release
+Features
+--------
+
+- You can now override the NotFound and Unauthorized responses that
+ :mod:`repoze.bfg` generates when a view cannot be found or cannot be
+ invoked due to lack of permission. See the "ZCML Hooks" chapter in
+ the docs for more information.
+
Behavior Changes
----------------
@@ -19,9 +27,12 @@ Behavior Changes
Implementation Changes
----------------------
-- Use a homegrown NotFound error instead of ``webob.HTTPNotFound``
+- Use a homegrown NotFound error instead of ``webob.exc.HTTPNotFound``
(the latter is slow).
+- Use a homegrown Unauthorized error instead of
+ ``webob.exc.Unauthorized`` (the latter is slow).
+
- Various speed micro-tweaks.
Bug Fixes