Releases: ParallelSSH/parallel-ssh
Releases · ParallelSSH/parallel-ssh
0.80.3
0.80.1
0.80.0
New release, many fixes, one breaking change to ParallelSSHClient.get_output
.
- Getting output for hosts that have errors is now possible without stopping command executions on all hosts. Host exception is now returned in output when
stop_on_errors=False
- #32. See updated documentation ofrun_command
. This has required a breaking change toParallelSSHClient.get_output
which will need updating if it is being used directly. Before:get_output(output)
. Now:get_output(output, greenlet)
. No changes are necessary if usingParallelSSHClient.run_command
as recommended. - Host de-duplication in output - #32
- Fix for lack of stdout causing client to hang - #37
- Host logging now disabled by default - #29. Call
pssh.utils.enable_host_logging()
to enable. - Refactored module into separate packages,
pssh.exceptions
,pssh.pssh_client
et al. - Fake server used for testing renamed to embedded server and gained shell support - #24
0.71.0rc2
0.70.4
Release candidate - Python 3.4 support
Release candidate for 0.71
point release.
- Python 3.4 support - automatic code conversion to python 3.
- Upgrade gevent to >=1.1b2 to enable Python 3
Minor bug fix release
Minor bug fix release for 0.70.x
series.
- Fixes regression with
timeout
parameter causing SSH channel timeout instead of connection attempt timeout.
Minor release
Minor bug fix release.
Fixes #25
Minor release
Minor release that adds minimum paramiko library version requirement.
Release version 0.70
This release brings a slew of updates and new functionality including a new user facing, simplified API.
Changes:
- New user facing API - #14
- Native SSH tunneling support. Removes the need for ProxyCommand to be set in ~/.ssh/config and no longer uses the 'ssh' binary to perform tunelling. #12
- Allow for overriding timeout setting of SSH clients - #16
- In tests, the python 2.6 target has been re-enabled to ensure python 2.6 support is not broken without realising.
- Many more tests, documentation updates and cleanup