forked from pool/python-Fabric
- 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
This commit is contained in:
committed by
Git OBS Bridge
parent
79c9e033cb
commit
ea35d5edd8
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:b7045df79835ba5e54d42e896f0d906fa68c2c183aab03c146e2f250277dda81
|
|
||||||
size 131708
|
|
3
Fabric-1.4.0.tar.bz2
Normal file
3
Fabric-1.4.0.tar.bz2
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:8d51417980104667104e2eee0660dfe980c2872ed3c7e3a2704e3f41404e19ef
|
||||||
|
size 138842
|
@@ -1,3 +1,48 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 14 11:46:00 UTC 2012 - alexandre@exatati.com.br
|
||||||
|
|
||||||
|
- 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
|
||||||
|
allow skipping past temporarily down/unreachable hosts.
|
||||||
|
- [Feature] #13: Env vars may now be set at runtime via the new
|
||||||
|
--set command-line flag.
|
||||||
|
- [Feature] #506: A new output alias, commands, has been added,
|
||||||
|
which allows hiding remote stdout and local “running command X”
|
||||||
|
output lines.
|
||||||
|
- [Feature] #72: SSH agent forwarding support has made it into
|
||||||
|
Fabric’s SSH library, and hooks for using it have been added
|
||||||
|
(disabled by default; use -A or env.forward_agent to enable.)
|
||||||
|
Thanks to Ben Davis for porting an existing Paramiko patch to ssh
|
||||||
|
and providing the necessary tweak to Fabric.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Jan 13 04:01:33 UTC 2012 - alexandre@exatati.com.br
|
Fri Jan 13 04:01:33 UTC 2012 - alexandre@exatati.com.br
|
||||||
|
|
||||||
|
@@ -15,8 +15,9 @@
|
|||||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
Name: python-Fabric
|
Name: python-Fabric
|
||||||
Version: 1.3.4
|
Version: 1.4.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Url: http://fabfile.org
|
Url: http://fabfile.org
|
||||||
Summary: Fabric is a simple, Pythonic tool for remote execution and deployment
|
Summary: Fabric is a simple, Pythonic tool for remote execution and deployment
|
||||||
|
Reference in New Issue
Block a user