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 +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>