14
0
forked from pool/python-Fabric

- Update to 1.3.4:

- [Bug] #492: @parallel did not automatically trigger linewise
    output, as was intended. This has been fixed. Thanks to Brandon
    Huey for the catch.
  - [Bug] #510: Parallel mode is incompatible with user input, such
    as password/hostname prompts, and was causing cryptic Operation
    not supported by device errors when such prompts needed to be
    displayed. This behavior has been updated to cleanly and obviously
    abort instead.
  - [Bug] #494: Fixed regression bug affecting some env values such
    as env.port under parallel mode. Symptoms included rsync_project
    bailing out due to a None port value when run under @parallel.
    Thanks to Rob Terhaar for the report.
  - [Bug] #339: Don’t show imported colors members in --list output.
    Thanks to Nick Trew for the report.

- Update to 1.3.3:
  - [Bug] #441: Specifying a task module as a task on the command
    line no longer blows up but presents the usual “no task by that
    name” error message instead. Thanks to Mitchell Hashimoto for
    the catch.
  - [Bug] #475: Allow escaping of equals signs in per-task args/kwargs.
  - [Bug] #450: Improve traceback display when handling
    ``ImportError``s for dependencies. Thanks to David Wolever for the patches.
  - [Bug] #446: Add QNX to list of secondary-case sed targets.
    Thanks to Rodrigo Madruga for the tip.
  - [Bug] #443: exists didn’t expand tildes; now it does. Thanks to
    Riccardo Magliocchetti for the patch.
  - [Bug] #437: with_settings now correctly preserves the wrapped
    function’s docstring and other attributes. Thanks to Eric Buckley for the catch and Luke Plant for the patch.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Fabric?expand=0&rev=13
This commit is contained in:
Alexandre Rogoski
2012-01-13 16:38:10 +00:00
committed by Git OBS Bridge
parent 6ca8c719f9
commit 79c9e033cb
4 changed files with 55 additions and 8 deletions

View File

@@ -1,3 +1,52 @@
-------------------------------------------------------------------
Fri Jan 13 04:01:33 UTC 2012 - alexandre@exatati.com.br
- Update to 1.3.4:
- [Bug] #492: @parallel did not automatically trigger linewise
output, as was intended. This has been fixed. Thanks to Brandon
Huey for the catch.
- [Bug] #510: Parallel mode is incompatible with user input, such
as password/hostname prompts, and was causing cryptic Operation
not supported by device errors when such prompts needed to be
displayed. This behavior has been updated to cleanly and obviously
abort instead.
- [Bug] #494: Fixed regression bug affecting some env values such
as env.port under parallel mode. Symptoms included rsync_project
bailing out due to a None port value when run under @parallel.
Thanks to Rob Terhaar for the report.
- [Bug] #339: Dont show imported colors members in --list output.
Thanks to Nick Trew for the report.
-------------------------------------------------------------------
Thu Nov 24 00:51:06 UTC 2011 - alexandre@exatati.com.br
- Update to 1.3.3:
- [Bug] #441: Specifying a task module as a task on the command
line no longer blows up but presents the usual “no task by that
name” error message instead. Thanks to Mitchell Hashimoto for
the catch.
- [Bug] #475: Allow escaping of equals signs in per-task args/kwargs.
- [Bug] #450: Improve traceback display when handling
``ImportError``s for dependencies. Thanks to David Wolever for the patches.
- [Bug] #446: Add QNX to list of secondary-case sed targets.
Thanks to Rodrigo Madruga for the tip.
- [Bug] #443: exists didnt expand tildes; now it does. Thanks to
Riccardo Magliocchetti for the patch.
- [Bug] #437: with_settings now correctly preserves the wrapped
functions docstring and other attributes. Thanks to Eric Buckley for the catch and Luke Plant for the patch.
- [Bug] #400: Handle corner case of systems where pwd.getpwuid
raises KeyError for the users UID instead of returning a valid string. Thanks to Dougal Matthews for the catch.
- [Bug] #397: Some poorly behaved objects in third party modules
triggered exceptions during Fabrics “classic or new-style task?” test. A fix has been added which tries to work around these.
- [Bug] #341: append incorrectly failed to detect that the line(s) given already existed in files hidden to the remote user, and continued appending every time it ran. This has been fixed. Thanks to Dominique Peretti for the catch and Martin Vilcans for the patch.
- [Bug] #342: Combining cd with put and its use_sudo keyword
caused an unrecoverable error. This has been fixed. Thanks to
Egor M for the report.
- [Bug] #482: Parallel mode should imply linewise output;
omission of this behavior was an oversight.
- [Bug] #230: Fix regression re: combo of no fabfile & arbitrary
command use. Thanks to Ali Saifee for the catch.
-------------------------------------------------------------------
Thu Nov 10 10:49:23 UTC 2011 - saschpe@suse.de