14
0
forked from pool/python-Fabric

Accepting request 692485 from home:glaubitz:branches:devel:languages:python

- Version update to 2.4.0:
  * [Feature] #1709: Add Group.close to allow closing an entire group’s
    worth of connections at once. Patch via Johannes Löthberg.
  * [Feature] #1780: Add context manager behavior to Group, to match
    the same feature in Connection. Feature request by István Sárándi.
  * [Feature] #1849: Add Connection.from_v1 (and Config.from_v1) for
    easy creation of modern Connection/Config objects from the currently
    configured Fabric 1.x environment. Should make upgrading piecemeal
    much easier for many use cases.
- additional changes from version 2.3.2:
    * [Bug] #1852: Grant internal Connection objects created during
      ProxyJump based gateways/proxies a copy of the outer Connection’s
      configuration object. This was not previously done, which among
      other things meant one could not fully disable SSH config file
      loading (as the internal Connection objects would revert to the
      default behavior). Thanks to Chris Adams for the report.
    * [Bug]: Some debug logging was reusing Invoke’s logger object,
      generating log messages “named” after invoke instead of fabric.
      This has been fixed by using Fabric’s own logger everywhere instead.
    * [Bug] #1850: Skip over ProxyJump configuration directives in SSH
      config data when they would cause self-referential RecursionError
      (e.g. due to wildcard-using Host stanzas which include the jump
      server itself). Reported by Chris Adams.
    * [Bug]: Fix a bug preventing tab completion (using the Invoke-level
      --complete flag) from completing task names correctly (behavior was
      to act as if there were never any tasks present, even if there was
      a valid fabfile nearby).
- Add sed expresion to spec file to remove all vendoring from imports
- Run testsuite using the new %pytest macro

OBS-URL: https://build.opensuse.org/request/show/692485
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Fabric?expand=0&rev=58
This commit is contained in:
Tomáš Chvátal
2019-04-11 09:50:09 +00:00
committed by Git OBS Bridge
parent 3c888908bb
commit db14f619e0
4 changed files with 42 additions and 7 deletions

View File

@@ -1,3 +1,36 @@
-------------------------------------------------------------------
Tue Apr 9 06:20:04 UTC 2019 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
- Version update to 2.4.0:
* [Feature] #1709: Add Group.close to allow closing an entire groups
worth of connections at once. Patch via Johannes Löthberg.
* [Feature] #1780: Add context manager behavior to Group, to match
the same feature in Connection. Feature request by István Sárándi.
* [Feature] #1849: Add Connection.from_v1 (and Config.from_v1) for
easy creation of modern Connection/Config objects from the currently
configured Fabric 1.x environment. Should make upgrading piecemeal
much easier for many use cases.
- additional changes from version 2.3.2:
* [Bug] #1852: Grant internal Connection objects created during
ProxyJump based gateways/proxies a copy of the outer Connections
configuration object. This was not previously done, which among
other things meant one could not fully disable SSH config file
loading (as the internal Connection objects would revert to the
default behavior). Thanks to Chris Adams for the report.
* [Bug]: Some debug logging was reusing Invokes logger object,
generating log messages “named” after invoke instead of fabric.
This has been fixed by using Fabrics own logger everywhere instead.
* [Bug] #1850: Skip over ProxyJump configuration directives in SSH
config data when they would cause self-referential RecursionError
(e.g. due to wildcard-using Host stanzas which include the jump
server itself). Reported by Chris Adams.
* [Bug]: Fix a bug preventing tab completion (using the Invoke-level
--complete flag) from completing task names correctly (behavior was
to act as if there were never any tasks present, even if there was
a valid fabfile nearby).
- Add sed expresion to spec file to remove all vendoring from imports
- Run testsuite using the new %pytest macro
-------------------------------------------------------------------
Sat Aug 11 15:01:48 UTC 2018 - tchvatal@suse.com