diff options
| author | Michael Merickel <michael@merickel.org> | 2018-10-03 20:22:38 -0500 |
|---|---|---|
| committer | Michael Merickel <michael@merickel.org> | 2018-10-03 20:27:49 -0500 |
| commit | 781371a7902154a64faa51e37a371242dfde1e29 (patch) | |
| tree | f99d40024d220759052188298aa9d060633307e9 /CHANGES.rst | |
| parent | 1f307db52785634d6667fde8de0273d5e0612310 (diff) | |
| download | pyramid-781371a7902154a64faa51e37a371242dfde1e29.tar.gz pyramid-781371a7902154a64faa51e37a371242dfde1e29.tar.bz2 pyramid-781371a7902154a64faa51e37a371242dfde1e29.zip | |
remove deprecated principal keyword argument to remember
Diffstat (limited to 'CHANGES.rst')
| -rw-r--r-- | CHANGES.rst | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/CHANGES.rst b/CHANGES.rst index 2b08965d1..4f0de298b 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -132,9 +132,16 @@ Backward Incompatibilities See https://github.com/Pylons/pyramid/pull/3328 - Removed ``pyramid.config.Configurator.set_request_property`` which had been - deprecated since Pyramid 1.5. + deprecated since Pyramid 1.5. Instead use + ``pyramid.config.Configurator.add_request_method`` with ``reify=True`` or + ``property=True``. See https://github.com/Pylons/pyramid/pull/3368 +- Removed the ``principal`` keyword argument from + ``pyramid.security.remember`` which had been deprecated since Pyramid 1.6 + and replaced by the ``userid`` argument. + See https://github.com/Pylons/pyramid/pull/3369 + Documentation Changes --------------------- |
