14
0
forked from pool/python-zipp

- update to 3.21.0:

* Improve performances of :meth:`zipfile.Path.open` for non-
    reading modes. (1a1928d)
  * Rely on cached_property to cache values on the instance.
  * Rely on save_method_args to save method args.
  * Make zipp.compat.overlay.zipfile hashable.
  * Replaced SanitizedNames with a more surgical fix for infinite
    loops, restoring support for names with special characters in
    the archive. (python/cpython#123270)
  * Made the zipfile compatibility overlay available as
    zipp.compat.overlay.
  * Also match directories in Path.glob.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-zipp?expand=0&rev=48
This commit is contained in:
2024-11-20 17:30:04 +00:00
committed by Git OBS Bridge
parent 653438943b
commit 8d58f2c86d
4 changed files with 20 additions and 4 deletions

View File

@@ -1,3 +1,19 @@
-------------------------------------------------------------------
Wed Nov 20 17:30:00 UTC 2024 - Dirk Müller <dmueller@suse.com>
- update to 3.21.0:
* Improve performances of :meth:`zipfile.Path.open` for non-
reading modes. (1a1928d)
* Rely on cached_property to cache values on the instance.
* Rely on save_method_args to save method args.
* Make zipp.compat.overlay.zipfile hashable.
* Replaced SanitizedNames with a more surgical fix for infinite
loops, restoring support for names with special characters in
the archive. (python/cpython#123270)
* Made the zipfile compatibility overlay available as
zipp.compat.overlay.
* Also match directories in Path.glob.
-------------------------------------------------------------------
Mon Jun 10 11:06:50 UTC 2024 - Dirk Müller <dmueller@suse.com>