diff options
| author | Michael Merickel <github@m.merickel.org> | 2018-10-04 11:31:07 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-10-04 11:31:07 -0500 |
| commit | c314e31223307d7fd739e0bc41519ae6d1d323d3 (patch) | |
| tree | f0d8dc769a786b59b9e44681bc0c9d694d2a0c4f /CHANGES.rst | |
| parent | 684a2cb4dc39b701e357bd0cb5c683a726cfb5f8 (diff) | |
| parent | 052cb72b63b9f5a36f45a4135d1e1c05c10004dd (diff) | |
| download | pyramid-c314e31223307d7fd739e0bc41519ae6d1d323d3.tar.gz pyramid-c314e31223307d7fd739e0bc41519ae6d1d323d3.tar.bz2 pyramid-c314e31223307d7fd739e0bc41519ae6d1d323d3.zip | |
Merge branch 'master' into fix-deprecated-accept-predicate
Diffstat (limited to 'CHANGES.rst')
| -rw-r--r-- | CHANGES.rst | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/CHANGES.rst b/CHANGES.rst index c3049a368..3934c5aed 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -141,12 +141,16 @@ Backward Incompatibilities of previous ``pyramid.httpexceptions.HTTPFound``. See https://github.com/Pylons/pyramid/pull/3328 -- Accept-handling has undergone work to get rid of undefined behaviors and - runtime exceptions. As part of this effort, it is now a hard error to pass - any media ranges to the ``accept`` predicate on routes and views. - Previously, depending on the version of WebOb, this would error on certain - requests or it would work in undefined ways. - https://github.com/Pylons/pyramid/pull/3326 +- Removed ``pyramid.config.Configurator.set_request_property`` which had been + 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 --------------------- |
