summaryrefslogtreecommitdiff
path: root/CHANGES.txt
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2013-10-28 14:08:06 -0400
committerChris McDonough <chrism@plope.com>2013-10-28 14:08:06 -0400
commit0f424ae492c4b7f11d526149046fc6467a54e438 (patch)
tree072461e6aa562934077674b609fcc77205bef17b /CHANGES.txt
parente5a0ca90d16ce78e05db71253720fa3082d8da2d (diff)
parent3c2f95e8049bbd45b144d454daa68005361828b2 (diff)
downloadpyramid-0f424ae492c4b7f11d526149046fc6467a54e438.tar.gz
pyramid-0f424ae492c4b7f11d526149046fc6467a54e438.tar.bz2
pyramid-0f424ae492c4b7f11d526149046fc6467a54e438.zip
Merge branch 'security-apis-on-request' of github.com:mgrbyte/pyramid into mgrbyte-security-apis-on-request
Diffstat (limited to 'CHANGES.txt')
-rw-r--r--CHANGES.txt8
1 files changed, 8 insertions, 0 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 895dc572f..61f3b63f7 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -4,6 +4,14 @@ Unreleased
Features
--------
+- The :mod:``pyramid.security`` authentication API methods should now be
+ accessed via the request. The ``pyramid.security`` authoriztion API function
+ :meth:`has_permission` should now be accessed via the request.
+ The methods :meth:``pyramid.request.Request.forget_userid``,
+ meth:``pyramid.request.Request.remember_userid`` now automatically
+ set the headers on the response, as returned by the corrosponding
+ method of the current request's :term:``authentication policy``.
+
- Pyramid's console scripts (``pserve``, ``pviews``, etc) can now be run
directly, allowing custom arguments to be sent to the python interpreter
at runtime. For example::