15
0
forked from pool/python-Beaker

- update to 1.13.0:

* Fix validation messages for validate_key and encrypt_key
  * Added support for rediscluster via ext:redisclusternm
  * Removed the need to install mock library to run tests
- Actually correct BuildRequires.
  * Fixed issue #180 - KeyError when loading deleted session
- add glibc-locale dependency for tests
  * Session cookies will now provide support for ``SameSite`` through the ``samesite`` option.
 * Fix bug with cookie deletion on leap years. Patch contributed
- minor spec improvement
  * Added an optimization to the FileNamespaceContainer when used with
    Session, such that the pickled contents of the file are not

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Beaker?expand=0&rev=63
This commit is contained in:
2024-04-20 13:26:46 +00:00
committed by Git OBS Bridge
parent 3c95418ea2
commit ccc1ab5b39
4 changed files with 21 additions and 13 deletions

View File

@@ -1,3 +1,11 @@
-------------------------------------------------------------------
Sat Apr 20 13:26:25 UTC 2024 - Dirk Müller <dmueller@suse.com>
- update to 1.13.0:
* Fix validation messages for validate_key and encrypt_key
* Added support for rediscluster via ext:redisclusternm
* Removed the need to install mock library to run tests
-------------------------------------------------------------------
Fri Feb 10 10:19:21 UTC 2023 - Dirk Müller <dmueller@suse.com>
@@ -8,7 +16,7 @@ Fri Feb 10 10:19:21 UTC 2023 - Dirk Müller <dmueller@suse.com>
-------------------------------------------------------------------
Tue Jan 3 08:16:03 UTC 2023 - Steve Kowalik <steven.kowalik@suse.com>
- Actually correct BuildRequires.
- Actually correct BuildRequires.
-------------------------------------------------------------------
Tue Dec 20 06:34:00 UTC 2022 - Steve Kowalik <steven.kowalik@suse.com>
@@ -18,7 +26,7 @@ Tue Dec 20 06:34:00 UTC 2022 - Steve Kowalik <steven.kowalik@suse.com>
* Fixed issue #122 - Session ignores deserializer json
* Remove ID generation fallback for when the uuid module is not found
* Port testing from nose to pytest
* Fixed issue #180 - KeyError when loading deleted session
* Fixed issue #180 - KeyError when loading deleted session
- Remove Python 2 and Python 3 gubbins.
- Remove patch denose.patch, merged upstream.
- Add patch support-pymemcache.patch:
@@ -33,7 +41,7 @@ Wed Mar 16 08:44:59 UTC 2022 - pgajdos@suse.com
-------------------------------------------------------------------
Tue Mar 1 08:40:51 UTC 2022 - Dirk Müller <dmueller@suse.com>
- add glibc-locale dependency for tests
- add glibc-locale dependency for tests
-------------------------------------------------------------------
Fri Mar 5 09:13:58 UTC 2021 - Markéta Machová <mmachova@suse.com>
@@ -88,7 +96,7 @@ Fri Mar 1 09:08:58 UTC 2019 - Tomáš Chvátal <tchvatal@suse.com>
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.
* 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.
-------------------------------------------------------------------
@@ -212,13 +220,13 @@ Sat Sep 22 20:26:45 UTC 2012 - os-dev@jacraig.com
Wed May 23 03:08:32 UTC 2012 - highwaystar.ru@gmail.com
- update to version 1.6.3
* Fix bug with cookie deletion on leap years. Patch contributed
* Fix bug with cookie deletion on leap years. Patch contributed
by Greg Nelson and Michael Wirth.
* Fix issue with referencing same module via different import paths.
Patch contributed by brianfrantz.
* Fix cookie expiration check. Patch contributed by Mike Dirolf.
- python3 package added
- minor spec improvement
- minor spec improvement
-------------------------------------------------------------------
Wed Feb 1 10:43:39 UTC 2012 - saschpe@suse.de
@@ -254,8 +262,8 @@ Thu Nov 10 10:13:51 UTC 2011 - saschpe@suse.de
direct specification of the name of which memcache backend to use.
* Basic container/file-based Session support working in Py3K. (#72)
* Further Python 3 fixes
* Added an optimization to the FileNamespaceContainer when used with
Session, such that the pickled contents of the file are not
* Added an optimization to the FileNamespaceContainer when used with
Session, such that the pickled contents of the file are not
read a second time when session.save() is called. (#64)
* Fixed bug whereby CacheManager.invalidate wouldn't work for a function
decorated by cache.cache(). (#61)