summaryrefslogtreecommitdiff
path: root/CHANGES.txt
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2011-01-08 00:02:41 -0500
committerChris McDonough <chrism@plope.com>2011-01-08 00:02:41 -0500
commit14f863d9b5c323303155c79901f22c5d0e1dbe69 (patch)
tree16caffbc54ef3aa61ca7572072e6b613dfa630ad /CHANGES.txt
parentb8bba60697c3397518b35e4f775464e863c0aded (diff)
downloadpyramid-14f863d9b5c323303155c79901f22c5d0e1dbe69.tar.gz
pyramid-14f863d9b5c323303155c79901f22c5d0e1dbe69.tar.bz2
pyramid-14f863d9b5c323303155c79901f22c5d0e1dbe69.zip
- ``pyramid.interfaces.ISession.get_csrf_token`` now mandates that an
implementation should return a *new* token if one doesn't already exist in the session (previously it would return None). The internal sessioning implementation has been changed.
Diffstat (limited to 'CHANGES.txt')
-rw-r--r--CHANGES.txt5
1 files changed, 5 insertions, 0 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 6157e3426..b7be0aea0 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -83,6 +83,11 @@ Backwards Incompatibilities
when the global function named ``pyramid.security.unauthenticated_userid``
is invoked, so if you're not invoking that, you will not notice any issues.
+- ``pyramid.interfaces.ISession.get_csrf_token`` now mandates that an
+ implementation should return a *new* token if one doesn't already exist in
+ the session (previously it would return None). The internal sessioning
+ implementation has been changed.
+
Documentation
-------------