From decee1f47c92eecfaa0617fad916b93f203542a4 Mon Sep 17 00:00:00 2001 From: Alessandro Molina Date: Mon, 4 Jun 2018 21:38:49 +0200 Subject: [PATCH] Version 1.10.0 --- CHANGELOG | 10 ++++++++++ beaker/__init__.py | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index c0f3213c..2faac949 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,4 +1,14 @@ +Release 1.10.0 (2018-06-04) +========================== + +* 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. + Release 1.9.1 (2018-04-09) ========================== diff --git a/beaker/__init__.py b/beaker/__init__.py index 35424e87..52af183e 100644 --- a/beaker/__init__.py +++ b/beaker/__init__.py @@ -1 +1 @@ -__version__ = '1.9.1' +__version__ = '1.10.0'