summaryrefslogtreecommitdiff
path: root/CHANGES.txt
diff options
context:
space:
mode:
authorChris McDonough <chrism@agendaless.com>2008-11-02 22:14:58 +0000
committerChris McDonough <chrism@agendaless.com>2008-11-02 22:14:58 +0000
commit389ac52e76f64da5bdf87acd19aa1b2fb5cf664b (patch)
treedde685da2bda59ba063cff2751cdf913571f1cea /CHANGES.txt
parentabe447ecb25bd385cafcdedeae0ee31007283569 (diff)
downloadpyramid-389ac52e76f64da5bdf87acd19aa1b2fb5cf664b.tar.gz
pyramid-389ac52e76f64da5bdf87acd19aa1b2fb5cf664b.tar.bz2
pyramid-389ac52e76f64da5bdf87acd19aa1b2fb5cf664b.zip
- Fix bug where default deny in authorization check would throw a
TypeError (use ``ACLDenied`` instead of ``Denied``).
Diffstat (limited to 'CHANGES.txt')
-rw-r--r--CHANGES.txt6
1 files changed, 6 insertions, 0 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 1a3d396d8..db47747a4 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -8,6 +8,12 @@ Next Release
the Settings objects defaults for ``debug_authorization`` and
``debug_notfound``.
+ - Return an instance of ``Allowed`` (rather than ``True``) from
+ ``has_permission`` when no security policy is in use.
+
+ - Fix bug where default deny in authorization check would throw a
+ TypeError (use ``ACLDenied`` instead of ``Denied``).
+
0.4.2 (11/2/2008)
Features