15
0

- update to 1.3.3:

* Added support for an additional pymemcached client parameter
    PyMemcacheBackend.memcached_expire_time
  * Fixed the return type for CacheRegion.get(), which was
    inadvertently hardcoded to use CacheReturnType that only
    resolved to CachedValue or NoValue. Fixed to return
    ValuePayload which resolves to Any, as well as a new literal
    indicating an enum constant for :data:.api.NO_VALUE. The
    :data:.api.NO_VALUE constant remains available as the single
    element of this enum.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-dogpile.cache?expand=0&rev=89
This commit is contained in:
2024-05-06 08:38:55 +00:00
committed by Git OBS Bridge
parent 258ea59931
commit 5b364ec856
4 changed files with 20 additions and 6 deletions

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2d38180731ab014dfad1ba9f2579e98355b9ecb21d9d957d42040cc8b1c73201
size 108101

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3810465974f135686f22d0b6efa67e57bd6b3940fbfc61eb25c204fa45f5876b
size 108334

View File

@@ -1,3 +1,17 @@
-------------------------------------------------------------------
Mon May 6 08:35:52 UTC 2024 - Dirk Müller <dmueller@suse.com>
- update to 1.3.3:
* Added support for an additional pymemcached client parameter
PyMemcacheBackend.memcached_expire_time
* Fixed the return type for CacheRegion.get(), which was
inadvertently hardcoded to use CacheReturnType that only
resolved to CachedValue or NoValue. Fixed to return
ValuePayload which resolves to Any, as well as a new literal
indicating an enum constant for :data:.api.NO_VALUE. The
:data:.api.NO_VALUE constant remains available as the single
element of this enum.
-------------------------------------------------------------------
Mon Mar 18 12:15:51 UTC 2024 - Dirk Müller <dmueller@suse.com>

View File

@@ -18,14 +18,14 @@
%{?sle15_python_module_pythons}
Name: python-dogpile.cache
Version: 1.3.2
Version: 1.3.3
Release: 0
%define modname dogpile.cache
%define modver 1_3_2
%define modver 1_3_3
Summary: A caching front-end based on the Dogpile lock
License: BSD-3-Clause
URL: https://github.com/sqlalchemy/dogpile.cache
Source: https://github.com/sqlalchemy/%{modname}/archive/rel_%{modver}.tar.gz#/%{modname}-%{version}.tar.gz
Source: https://github.com/sqlalchemy/%{modname}/archive/refs/tags/rel_%{modver}.tar.gz#/%{modname}-%{version}.tar.gz
BuildRequires: %{python_module Mako}
BuildRequires: %{python_module dbm}
BuildRequires: %{python_module decorator >= 4.0.0}