14
0
forked from pool/python-invoke

Accepting request 974913 from home:pgajdos:python

- version update to 1.7.0
  * [Feature] #845: Env vars explicitly supplied to sudo (via its env kwarg) are now
    explicitly preserved via sudo’s --preserve-env argument. Patch courtesy of Benno Rice.
  * [Feature] #793: Add a new tasks.ignore_unknown_help config option for users who hand
    their tasks centrally-defined argument help dictionaries; it defaults to False but
     such users may set it to True to avoid exceptions. Thanks to @Allu2 for the report.
  * [Support]: Switch our continuous integration service from Travis-CI to Circle-CI,
    plus related and necessary updates to various administrative config files, management
    tasks and metadata. Including but not limited to:
      * Enhanced PyPI-level metadata/links
      * Split out tool config data from setup.cfg
      * Enhance execution & coverage of unit vs integration tests under CI
  * [Support] #803: Upgrade our vendored PyYAML from 3.11 to 5.4.1; this should both
    supply a number of security fixes, and address problems loading project-level YAML
    config files under Python 3.10. Fix via Andreas Rammhold.
  * [Support]: Switch to using yaml.safe_load for loading config files. This avoids some
    warnings under newer PyYAML versions and is also, in a shocking twist, more secure.
- do not require python-mock for build, testsuite is not run
- modified patches
  % 0001-Make-test-fallback-to-system-modules-when-vendorized.patch (refreshed)
- deleted patches
  - fix-yaml-loader.patch (upstreamed)

OBS-URL: https://build.opensuse.org/request/show/974913
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-invoke?expand=0&rev=29
This commit is contained in:
2022-05-04 17:48:59 +00:00
committed by Git OBS Bridge
parent 3c01f65f82
commit 9ccbd01ce1
6 changed files with 47 additions and 37 deletions

View File

@@ -1,3 +1,29 @@
-------------------------------------------------------------------
Wed May 4 12:35:49 UTC 2022 - pgajdos@suse.com
- version update to 1.7.0
* [Feature] #845: Env vars explicitly supplied to sudo (via its env kwarg) are now
explicitly preserved via sudos --preserve-env argument. Patch courtesy of Benno Rice.
* [Feature] #793: Add a new tasks.ignore_unknown_help config option for users who hand
their tasks centrally-defined argument help dictionaries; it defaults to False but
such users may set it to True to avoid exceptions. Thanks to @Allu2 for the report.
* [Support]: Switch our continuous integration service from Travis-CI to Circle-CI,
plus related and necessary updates to various administrative config files, management
tasks and metadata. Including but not limited to:
* Enhanced PyPI-level metadata/links
* Split out tool config data from setup.cfg
* Enhance execution & coverage of unit vs integration tests under CI
* [Support] #803: Upgrade our vendored PyYAML from 3.11 to 5.4.1; this should both
supply a number of security fixes, and address problems loading project-level YAML
config files under Python 3.10. Fix via Andreas Rammhold.
* [Support]: Switch to using yaml.safe_load for loading config files. This avoids some
warnings under newer PyYAML versions and is also, in a shocking twist, more secure.
- do not require python-mock for build, testsuite is not run
- modified patches
% 0001-Make-test-fallback-to-system-modules-when-vendorized.patch (refreshed)
- deleted patches
- fix-yaml-loader.patch (upstreamed)
-------------------------------------------------------------------
Tue Dec 28 21:43:30 UTC 2021 - Ben Greiner <code@bnavigator.de>