14
0

- update to 5.3.0:

* Deprecate infer_compression, as it was used primarily for
    deferring to the tar command.
  * Enable 'transparent' compression in the tarfile context.
  * Implemented tarfile using native functionality and avoiding
    subprocessing, making it portable.
  * Implement experimental _compose for composing context
    managers. If you wish to use this function, please comment in
    the issue regarding your thoughts on the ordering.
  * Deprecate null context.
  * Renamed tarball_context to tarball and deprecated
    tarball_context compatibility shim.
  * Disentangle pushd from tarball.
  * Removed deprecated 'runner' parameter to tarball_context.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-jaraco.context?expand=0&rev=15
This commit is contained in:
2024-04-07 09:28:41 +00:00
committed by Git OBS Bridge
parent 8c5088177a
commit 0177f6902a
4 changed files with 28 additions and 8 deletions

View File

@@ -1,3 +1,21 @@
-------------------------------------------------------------------
Sun Apr 7 09:27:50 UTC 2024 - Dirk Müller <dmueller@suse.com>
- update to 5.3.0:
* Deprecate infer_compression, as it was used primarily for
deferring to the tar command.
* Enable 'transparent' compression in the tarfile context.
* Implemented tarfile using native functionality and avoiding
subprocessing, making it portable.
* Implement experimental _compose for composing context
managers. If you wish to use this function, please comment in
the issue regarding your thoughts on the ordering.
* Deprecate null context.
* Renamed tarball_context to tarball and deprecated
tarball_context compatibility shim.
* Disentangle pushd from tarball.
* Removed deprecated 'runner' parameter to tarball_context.
-------------------------------------------------------------------
Mon May 22 21:09:33 UTC 2023 - Dirk Müller <dmueller@suse.com>