diff options
| author | Michael Merickel <github@m.merickel.org> | 2018-11-04 12:44:05 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-11-04 12:44:05 -0600 |
| commit | 6f0d73d6eea8064f1c5d9294beb7f7d64619071d (patch) | |
| tree | 48c8817248f2dc2a7b705508215fbd00340d0856 /CHANGES.rst | |
| parent | 133db09d179c3f5afe7e02dc13ab6687517db5a1 (diff) | |
| parent | 74291f06e608c44f6bbce09bfbefbaabad832935 (diff) | |
| download | pyramid-6f0d73d6eea8064f1c5d9294beb7f7d64619071d.tar.gz pyramid-6f0d73d6eea8064f1c5d9294beb7f7d64619071d.tar.bz2 pyramid-6f0d73d6eea8064f1c5d9294beb7f7d64619071d.zip | |
Merge pull request #3413 from mmerickel/json-sessions
change to use JSONSerializer for SignedCookieSessionFactory
Diffstat (limited to 'CHANGES.rst')
| -rw-r--r-- | CHANGES.rst | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/CHANGES.rst b/CHANGES.rst index dfea7afa9..73562c003 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -4,6 +4,14 @@ unreleased Features -------- +- Changed the default ``serializer`` on + ``pyramid.session.SignedCookieSessionFactory`` to use + ``pyramid.session.JSONSerializer`` instead of + ``pyramid.session.PickleSerializer``. Read + "Changes to ISession in Pyramid 2.0" in the "Sessions" chapter of the + documentation for more information about why this change was made. + See https://github.com/Pylons/pyramid/pull/3413 + Bug Fixes --------- @@ -52,6 +60,14 @@ Backward Incompatibilities lead to remove code execution if the secret key is compromised. See https://github.com/Pylons/pyramid/pull/3412 +- Changed the default ``serializer`` on + ``pyramid.session.SignedCookieSessionFactory`` to use + ``pyramid.session.JSONSerializer`` instead of + ``pyramid.session.PickleSerializer``. Read + "Changes to ISession in Pyramid 2.0" in the "Sessions" chapter of the + documentation for more information about why this change was made. + See https://github.com/Pylons/pyramid/pull/3413 + Documentation Changes --------------------- |
