15
0
forked from pool/python-Beaker

- Update to 1.10.1:

* Fix issue with Redis namespace manager TTL
  * Fix for SameSite cookie option not being set in some cases
  * Fix for memcached tests on Python3
  * Redis namespace manager now supports providing a TTL for session entries that had a ``timeout`` provided.
    This will remove the need to manually clear expired sessions from the redis storage.
  * ``nsscrypto`` backend is now properly identified as providing AES support.
  * When a crypto backend doesn't support AES it will no longer crash if the ``encrypt_key`` is ``None``.
  * Session cookies will now provide support for ``SameSite`` through the ``samesite`` option. 
    By default this will be ``Lax``, but can be set to ``Strict`` or ``None`` to disable it.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Beaker?expand=0&rev=36
This commit is contained in:
Tomáš Chvátal
2019-03-06 19:05:41 +00:00
committed by Git OBS Bridge
parent 6e4f1663a7
commit 44c079a628
4 changed files with 38 additions and 22 deletions

View File

@@ -1,3 +1,17 @@
-------------------------------------------------------------------
Fri Mar 1 09:08:58 UTC 2019 - Tomáš Chvátal <tchvatal@suse.com>
- Update to 1.10.1:
* Fix issue with Redis namespace manager TTL
* Fix for SameSite cookie option not being set in some cases
* Fix for memcached tests on Python3
* Redis namespace manager now supports providing a TTL for session entries that had a ``timeout`` provided.
This will remove the need to manually clear expired sessions from the redis storage.
* ``nsscrypto`` backend is now properly identified as providing AES support.
* When a crypto backend doesn't support AES it will no longer crash if the ``encrypt_key`` is ``None``.
* Session cookies will now provide support for ``SameSite`` through the ``samesite`` option.
By default this will be ``Lax``, but can be set to ``Strict`` or ``None`` to disable it.
-------------------------------------------------------------------
Thu Sep 7 16:55:30 UTC 2017 - toddrme2178@gmail.com