summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2016-12-05Don't expect reply to env-setting messages.Jeff Forcier
Re #398
2016-12-05Add some warnings about AcceptEnv to env var setting bits.Jeff Forcier
Re #398
2016-12-05Cleanup / rename / doc updates / changelog, re #398Jeff Forcier
2016-12-05Support transmission of environment variablesPhilip Lorenz
The SSH protocol allows the client to transmit environment variables to the server. This is particularly useful if the user wants to modify the environment of an executed command without having to reexecute the actual command from a shell. This patch extends the Client and Channel interface to allow the transmission of environment variables to the server side. In order to use this feature the SSH server must accept environment variables from the client (e.g. the AcceptEnv configuration directive of OpenSSH). FROM BITPROPHET: backport cherry-pick to 1.x line
2016-12-05Changelog re #334, close #334Jeff Forcier
2016-12-05Tweak subprocess importing so it still ImportErrors, just lazily.Jeff Forcier
This feels better than raising our own custom error of whatever class when popen is None. Only obvious downside is it's 'bad style' but I defer to Zen of Python number 9 Re #334
2016-12-05Fixes to work on Google App EngineShinya Okano
2016-12-05Fix #854Jeff Forcier
2016-12-05We never added a changelog entry re #681!Jeff Forcier
2016-12-05Merge branch '1.16' into 1.17Jeff Forcier
2016-12-05Merge branch '1.15' into 1.16Jeff Forcier
2016-12-05Tighten up sphinx reqJeff Forcier
2016-09-21Merge branch '1.16' into 1.17Jeff Forcier
2016-09-21Merge branch '1.15' into 1.16Jeff Forcier
2016-09-21Changelog entry noting how #819 was a thingJeff Forcier
2016-09-21Merge branch '1.16' into 1.17Jeff Forcier
2016-09-21Merge branch '1.15' into 1.16Jeff Forcier
2016-09-21I'm still mad re #819. Here, have some docs.Jeff Forcier
2016-09-15Merge branch '1.16' into 1.17Jeff Forcier
2016-09-15Merge branch '1.15' into 1.16Jeff Forcier
2016-09-15==dev is no moreJeff Forcier
2016-07-25Cut 1.17.2Jeff Forcier
2016-07-25Merge branch '1.16' into 1.17Jeff Forcier
2016-07-25Cut 1.16.3Jeff Forcier
2016-07-25Merge branch '1.16' into 1.17Jeff Forcier
2016-07-25Forgot the now-important line modifier in changelogJeff Forcier
2016-07-25Merge branch '1.16' into 1.17Jeff Forcier
2016-07-25Changelog re #673, fixes #673, closes #681Jeff Forcier
2016-07-25ProxyCommand fixes for Python3Paul Kapp
Simple fix of using unbuffered subprocess.PIPE uncovered a trickier bug where the lack of timeout on initial readline call would pull data from the first real packet, throwing off subsequent reads. Doesn’t seem necessary to preserve a read buffer across recv() calls, especially if it isn’t implemented correctly.
2016-07-25Merge branch '1.16' into 1.17Jeff Forcier
2016-07-25Changelog closes #774Jeff Forcier
2016-07-25Give Channel ._closed as alias to .closed.Jeff Forcier
Fixes #774.
2016-07-25Merge branch '1.16' into 1.17Jeff Forcier
2016-07-25Merge branch '1.15' into 1.16Jeff Forcier
2016-07-25Changelog formatting fixJeff Forcier
2016-07-25Merge branch '1.16' into 1.17Jeff Forcier
2016-07-25Merge branch '1.15' into 1.16Jeff Forcier
2016-07-25Update tasks to use Invoke/Invocations 0.13Jeff Forcier
2016-07-25Merge branch '1.16' into 1.17Jeff Forcier
2016-07-25Merge pull request #784 from jaraco/no-cover-winapiJeff Forcier
Exclude _winapi from coverage
2016-07-25Merge branch '1.16' into 1.17Jeff Forcier
2016-07-25Expand & add credits to changelog entry re #783, re #758Jeff Forcier
2016-07-25Move changelog entry to topJeff Forcier
2016-07-25Merge branch '1.16' into 783-intJeff Forcier
2016-07-25Merge branch '1.16' into 1.17Jeff Forcier
2016-07-25Merge branch '1.15' into 1.16Jeff Forcier
2016-07-25Add missing versionchanged directive to Transport.open_sessionJeff Forcier
We oopsed and added an API change in a tertiary release :(
2016-07-22Omit _winapi from coverage, as it won't be invoked on Unix and is tested ↵Jason R. Coombs
upstream in jaraco.windows.
2016-07-22Add type declarations for Windows API calls as found in jaraco.windows ↵Jason R. Coombs
3.6.1. Fixes #758.
2016-07-22Resave with trailing whitespace removedJason R. Coombs