diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2017-02-20 14:41:14 -0800 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2017-02-20 14:41:14 -0800 |
commit | a16a28afbf643b1219796f041edde05109fa2000 (patch) | |
tree | 1cc0c230c7c6750ad0de6cf363247790a8c5e935 /sites/www/changelog.rst | |
parent | 4bbea1325988bb80f80113ab3a81bd5ed1ec7811 (diff) | |
parent | 5835599f0047b4ab1d2a090c058baf282a1402f7 (diff) |
Merge branch '2.0' into 2.1
Diffstat (limited to 'sites/www/changelog.rst')
-rw-r--r-- | sites/www/changelog.rst | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sites/www/changelog.rst b/sites/www/changelog.rst index 9084f1be..b53f0828 100644 --- a/sites/www/changelog.rst +++ b/sites/www/changelog.rst @@ -2,6 +2,13 @@ Changelog ========= +* :bug:`44 (1.17+)` (via :issue:`891`) `SSHClient <paramiko.client.SSHClient>` + now gives its internal `Transport <paramiko.transport.Transport>` a handle on + itself, preventing garbage collection of the client until the session is + closed. Without this, some code which returns stream or transport objects + without the client that generated them, would result in premature session + closure when the client was GCd. Credit: ``@w31rd0`` for original report, + Omer Anson for the patch. * :bug:`713 (1.17+)` (via :issue:`714` and :issue:`889`) Don't pass initialization vectors to PyCrypto when dealing with counter-mode ciphers; newer PyCrypto versions throw an exception otherwise (older ones simply |