summaryrefslogtreecommitdiff
path: root/docs/whatsnew-1.5.rst
diff options
context:
space:
mode:
Diffstat (limited to 'docs/whatsnew-1.5.rst')
-rw-r--r--docs/whatsnew-1.5.rst7
1 files changed, 6 insertions, 1 deletions
diff --git a/docs/whatsnew-1.5.rst b/docs/whatsnew-1.5.rst
index 23613896a..9ccf097a8 100644
--- a/docs/whatsnew-1.5.rst
+++ b/docs/whatsnew-1.5.rst
@@ -348,7 +348,10 @@ The feature additions in Pyramid 1.5 follow.
signing content. The custom serializer arguments to this function should
only focus on serializing, unlike its predecessor which required the
serializer to also perform signing.
- See https://github.com/Pylons/pyramid/pull/1142
+ See https://github.com/Pylons/pyramid/pull/1142 . Note
+ that cookies generated using ``SignedCookieSessionFactory`` are not
+ compatible with cookies generated using ``UnencryptedCookieSessionFactory``,
+ so existing user session data will be destroyed if you switch to it.
- Added a new ``BaseCookieSessionFactory`` which acts as a generic cookie
factory that can be used by framework implementors to create their own
@@ -504,3 +507,5 @@ Dependency Changes
- Pyramid no longer depends upon ``Mako`` or ``Chameleon``.
+- Pyramid now depends on WebOb>=1.3 (it uses ``webob.cookies.CookieProfile``
+ from 1.3+).