diff options
| author | Andreas Zeidler <az@zitc.de> | 2013-08-15 03:16:24 -0700 |
|---|---|---|
| committer | Andreas Zeidler <az@zitc.de> | 2013-08-15 03:16:24 -0700 |
| commit | 69e5c9e0c12f2d16482d2e15823ce3a9f8dd5ad9 (patch) | |
| tree | f6459f4847614516a99948d30a5d6fd288042b1b /CHANGES.txt | |
| parent | 7ff85889bbc87119338a4e0a8fd55e0147e669e3 (diff) | |
| parent | a1f768cc766516e81f295c7ad507305e526a740e (diff) | |
| download | pyramid-69e5c9e0c12f2d16482d2e15823ce3a9f8dd5ad9.tar.gz pyramid-69e5c9e0c12f2d16482d2e15823ce3a9f8dd5ad9.tar.bz2 pyramid-69e5c9e0c12f2d16482d2e15823ce3a9f8dd5ad9.zip | |
Merge pull request #1078 from wichert/auth-explicit-domain
Allow explicit auth cookie domain setting.
Diffstat (limited to 'CHANGES.txt')
| -rw-r--r-- | CHANGES.txt | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index 76522695a..f98de6c29 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -49,9 +49,13 @@ Features ``pyramid.config.Configurator.add_static_view``. This allows externally-hosted static URLs to be generated based on the current protocol. -- The ``AuthTktAuthenticationPolicy`` has a new ``parent_domain`` option to - set the authentication cookie as a wildcard cookie on the parent domain. This - is useful if you have multiple sites sharing the same domain. +- The ``AuthTktAuthenticationPolicy`` has two new options to configure its + domain usage: + * ``parent_domain``: if set the authentication cookie is set on + the parent domain. This is useful if you have multiple sites sharing the + same domain. + * ``domain``: if provided the cookie is always set for this domain, bypassing + all usual logic. - The ``AuthTktAuthenticationPolicy`` now supports IPv6 addresses when using the ``include_ip=True`` option. This is possibly incompatible with |
