14
0
forked from pool/python-Fabric
Commit Graph

9 Commits

Author SHA256 Message Date
Alexandre Rogoski
ea35d5edd8 - Update to 1.4.0:
- [Bug] #495: Fixed documentation example showing how to subclass Task.
    Thanks to Brett Haydon for the catch and Mark Merritt for the patch.
  - [Bug] #410: Fixed a bug where using the task decorator inside/under
    another decorator such as hosts could cause that task to become invalid
    when invoked by name (due to how old-style vs new-style tasks are
    detected.) Thanks to Dan Colish for the initial patch.
  - [Feature] #559: rsync_project now allows users to append extra
    SSH-specific arguments to rsync‘s --rsh flag.
  - [Feature] #138: env.port may now be written to at fabfile module level
    to set a default nonstandard port number. Previously this value was
    read-only.
  - [Feature] #3: Fabric can now load a subset of SSH config functionality
    directly from your local ~/.ssh/config if env.use_ssh_config is set
    to True. See Leveraging native SSH config files for details. Thanks
    to Kirill Pinchuk for the initial patch.
  - [Feature] #12: Added the ability to try connecting multiple times to
    temporarily-down remote systems, instead of immediately failing.
    (Default behavior is still to only try once.) See env.timeout and
    env.connection_attempts for controlling both connection timeouts and
    total number of attempts. reboot has also been overhauled (but
    practically deprecated – see its updated docs.)
  - [Feature] #474: execute now allows you to access the executed task’s
    return values, by itself returning a dictionary whose keys are the
    host strings executed against.
  - [Bug] #487: Overhauled the regular expression escaping performed in
    append and contains to try and handle more corner cases. Thanks to
    Neilen Marais for the patch.
  - [Support] #532: Reorganized and cleaned up the output of fab --help.
  - [Feature] #8: Added --skip-bad-hosts/env.skip_bad_hosts option to

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Fabric?expand=0&rev=14
2012-02-14 11:57:06 +00:00
Alexandre Rogoski
79c9e033cb - 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
2012-01-13 16:38:10 +00:00
Sascha Peilicke
6ca8c719f9 - Update to version 1.3.2:
* No upstream-provided changes
- Set license to SPDX-style (BSD-2-Clause)

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Fabric?expand=0&rev=10
2011-11-10 10:50:13 +00:00
Sascha Peilicke
4cbdce60d1 - Fixed link expansion error
- Removed some unneeded stuff

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Fabric?expand=0&rev=8
2011-09-02 07:46:23 +00:00
Sascha Peilicke
17dfd72f39 Autobuild autoformatter for 77999
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-Fabric?expand=0&rev=2
2011-08-08 13:51:17 +00:00
Alexandre Rogoski
e10bac16dd - Fix License clause in spec file.
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Fabric?expand=0&rev=5
2011-08-04 12:05:04 +00:00
Alexandre Rogoski
ca1821249a - Update to 1.2.0:
- 2011-07-12: released Fabric 1.2.0
  - [Feature] #22: Enhanced @task to add aliasing, per-module default
    tasks, and control over the wrapping task class. Thanks to Travis
    Swicegood for the initial work and collaboration.
  - [Bug] #380: Improved unicode support when testing objects for being
    string-like. Thanks to Jiri Barton for catch & patch.
  - [Support] #382: Experimental overhaul of changelog formatting &
    process to make supporting multiple lines of development less of a
    hassle.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Fabric?expand=0&rev=4
2011-07-13 13:01:51 +00:00
Alexandre Rogoski
d09b5320f0 - Update to 1.1.1:
- The public API for Task mentioned use of the run() method, but
    Fabric’s main execution loop had not been updated to look for
    and call it, forcing users who subclassed Task to define
    __call__() instead. This was an oversight and has been corrected.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Fabric?expand=0&rev=3
2011-06-30 11:15:57 +00:00
Alexandre Rogoski
b44ef01e28 - Rename to python-Fabric as following conventions;
- Now BuildRequires and Requires python-distribute instead of
  python-setuptools.

- Update to 1.0.1:
  - #301: Fixed a bug in local‘s behavior when capture=False and
    output.stdout (or .stderr) was also False. Thanks to Chris Rose
    for the catch.
  - #310: Update edge case in put where using the mode kwarg
    alongside use_sudo=True runs a hidden sudo command. The mode
    kwarg needs to be octal but was being interpolated in the sudo
    call as a string/integer. Thanks to Adam Ernst for the catch
    and suggested fix.
  - #311: append was supposed to have its partial kwarg’s default
    flipped from True to False. However, only the documentation was
    altered. This has been fixed. Thanks to Adam Ernst for bringing
    it to our attention.
  - #312: Tweak internal I/O related loops to prevent high CPU
    usage and poor screen-printing behavior on some systems. Thanks
    to Kirill Pinchuk for the initial patch.
  - #320: Some users reported problems with dropped input,
    particularly while entering sudo passwords. This was fixed via
    the same change as for #312.
- Regenerate spec file with py2pack;
- Add README file as documentation.

- Update to 1.0.0:
  - #7: run/sudo now allow full interactivity with the remote end.
    You can interact with remote prompts and similar interfaces,
    making certain tasks much easier, and freeing you from the

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Fabric?expand=0&rev=2
2011-06-07 23:23:10 +00:00