summaryrefslogtreecommitdiff
path: root/CHANGES.rst
diff options
context:
space:
mode:
authorMichael Merickel <github@m.merickel.org>2018-11-01 14:31:37 -0500
committerGitHub <noreply@github.com>2018-11-01 14:31:37 -0500
commitaa1660f3d9a5dc654a91544d72de596af2fdf9ba (patch)
tree5f489b644f1571aef94bb61e9baee0bab9407a74 /CHANGES.rst
parent04eff2cc3ab71f0c38583647b047fff9447b7668 (diff)
parentf229f02f7c96ba81f1827973458fd0c5843235f1 (diff)
downloadpyramid-aa1660f3d9a5dc654a91544d72de596af2fdf9ba.tar.gz
pyramid-aa1660f3d9a5dc654a91544d72de596af2fdf9ba.tar.bz2
pyramid-aa1660f3d9a5dc654a91544d72de596af2fdf9ba.zip
Merge pull request #3410 from mmerickel/remove-deprecated-security-functions
remove deprecated security functions
Diffstat (limited to 'CHANGES.rst')
-rw-r--r--CHANGES.rst10
1 files changed, 9 insertions, 1 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index 16e06d532..cd2d05054 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -15,7 +15,7 @@ Backward Incompatibilities
- ``pcreate`` and the builtin scaffolds have been removed in favor of
using the ``cookiecutter`` tool and the ``pyramid-cookiecutter-starter``
- cookiecutter.
+ cookiecutter. The script and scaffolds were deprecated in Pyramid 1.8.
See https://github.com/Pylons/pyramid/pull/3406
- Removed ``pyramid.interfaces.ITemplateRenderer``. This interface was
@@ -24,6 +24,14 @@ Backward Incompatibilities
provided no functionality within Pyramid itself.
See https://github.com/Pylons/pyramid/pull/3409
+- Removed ``pyramid.security.has_permission``,
+ ``pyramid.security.authenticated_userid``,
+ ``pyramid.security.unauthenticated_userid``, and
+ ``pyramid.security.effective_principals``. These methods were deprecated
+ in Pyramid 1.5 and all have equivalents available as properties on the
+ request. For example, ``request.authenticated_userid``.
+ See https://github.com/Pylons/pyramid/pull/3410
+
Documentation Changes
---------------------