diff options
| author | Chris McDonough <chrism@plope.com> | 2011-05-25 21:59:53 -0400 |
|---|---|---|
| committer | Chris McDonough <chrism@plope.com> | 2011-05-25 21:59:53 -0400 |
| commit | 0ca4bbecb3fa95628145c1584bace639a66a6807 (patch) | |
| tree | 994cd46752b84b5832567c531574776fed680b7e | |
| parent | 0a3692d2a83c2085a835b44eadb7d16582551d81 (diff) | |
| download | pyramid-0ca4bbecb3fa95628145c1584bace639a66a6807.tar.gz pyramid-0ca4bbecb3fa95628145c1584bace639a66a6807.tar.bz2 pyramid-0ca4bbecb3fa95628145c1584bace639a66a6807.zip | |
add notifications for new feature
| -rw-r--r-- | CHANGES.txt | 6 | ||||
| -rw-r--r-- | docs/whatsnew-1.1.rst | 4 |
2 files changed, 10 insertions, 0 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index 0992af9ef..8b2dae7f1 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -37,9 +37,15 @@ Documentation - Added "What's New in Pyramid 1.1" to HTML rendering of documentation. +- Added API docs for ``pyramid.authentication.SessionAuthenticationPolicy``. + Features -------- +- New authentication policy: + ``pyramid.authentication.SessionAuthenticationPolicy``, which uses a session + to store credentials. + - Accessing the ``response`` attribute of a ``pyramid.request.Request`` object (e.g. ``request.response`` within a view) now produces a new ``pyramid.response.Response`` object. This feature is meant to be used diff --git a/docs/whatsnew-1.1.rst b/docs/whatsnew-1.1.rst index 992e0b637..ea56e2020 100644 --- a/docs/whatsnew-1.1.rst +++ b/docs/whatsnew-1.1.rst @@ -53,6 +53,10 @@ Static Routes Minor Feature Additions ----------------------- +- New authentication policy: + :ref:`pyramid.authentication.SessionAuthenticationPolicy`, which uses a + session to store credentials. + - Integers and longs passed as ``elements`` to :func:`pyramid.url.resource_url` or :meth:`pyramid.request.Request.resource_url` e.g. ``resource_url(context, |
