summaryrefslogtreecommitdiff
path: root/CHANGES.txt
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2011-04-11 04:31:01 -0400
committerChris McDonough <chrism@plope.com>2011-04-11 04:31:01 -0400
commit474df5c8b4d76bf4c1b355fcaab8590fc4f307fb (patch)
tree791737ee6a9d6a18cac1b5b0257a8a50d9203afe /CHANGES.txt
parentd9b52b657a063c3714c8b645d3ec023edafa28d7 (diff)
downloadpyramid-474df5c8b4d76bf4c1b355fcaab8590fc4f307fb.tar.gz
pyramid-474df5c8b4d76bf4c1b355fcaab8590fc4f307fb.tar.bz2
pyramid-474df5c8b4d76bf4c1b355fcaab8590fc4f307fb.zip
- Don't explicitly prevent the ``timeout`` from being lower than the
``reissue_time`` when setting up an ``AuthTktAuthenticationPolicy`` (previously such a configuration would raise a ``ValueError``, now it's allowed, although typically nonsensical). Allowing the nonsensical configuration made the code more understandable and required fewer tests. - Add a test for when the auth_tkt value is empty.
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 7f12b4d08..768a08b0a 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -43,6 +43,12 @@ Features
eg. ``context.result.permission``, ``context.result.acl``, etc within the
logic of the Forbidden exception view.
+- Don't explicitly prevent the ``timeout`` from being lower than the
+ ``reissue_time`` when setting up an ``AuthTktAuthenticationPolicy``
+ (previously such a configuration would raise a ``ValueError``, now it's
+ allowed, although typically nonsensical). Allowing the nonsensical
+ configuration made the code more understandable and required fewer tests.
+
Bug Fixes
---------