summaryrefslogtreecommitdiffhomepage
path: root/sites
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2016-12-05 18:03:08 -0800
committerJeff Forcier <jeff@bitprophet.org>2016-12-05 18:03:08 -0800
commit64f9b78bd1bffaf243da3c843e39504c0f1ee87f (patch)
treea4919881a4751e7305385d0f9ea045dc6e8d045d /sites
parent805ec8a4242e2b6f9869aaeea950d9c3b2fb56aa (diff)
parenta2eab0d2950212ae8ff8f7d40979aeda302d4154 (diff)
Merge branch '2.0'
Diffstat (limited to 'sites')
-rw-r--r--sites/www/changelog.rst14
1 files changed, 14 insertions, 0 deletions
diff --git a/sites/www/changelog.rst b/sites/www/changelog.rst
index 49ddd848..f739c9fa 100644
--- a/sites/www/changelog.rst
+++ b/sites/www/changelog.rst
@@ -2,6 +2,20 @@
Changelog
=========
+* :bug:`742` (also re: :issue:`559`) Catch ``AssertionError`` thrown by
+ Cryptography when attempting to load bad ECDSA keys, turning it into an
+ ``SSHException``. This moves the behavior in line with other "bad keys"
+ situations, re: Paramiko's main auth loop. Thanks to MengHuan Yu for the
+ patch.
+* :bug:`334` Make the ``subprocess`` import in ``proxy.py`` lazy so users on
+ platforms without it (such as Google App Engine) can import Paramiko
+ successfully. (Relatedly, make it easier to tweak an active socket check
+ timeout [in `Transport <paramko.transport.Transport>`] which was previously
+ hardcoded.) Credit: Shinya Okano.
+* :support:`854 backported` Fix incorrect docstring/param-list for
+ `Transport.auth_gssapi_keyex
+ <paramiko.transport.Transport.auth_gssapi_keyex>` so it matches the real
+ signature. Caught by ``@Score_Under``.
* :bug:`681` Fix a Python3-specific bug re: the handling of read buffers when
using ``ProxyCommand``. Thanks to Paul Kapp for catch & patch.
* :feature:`398` Add an ``environment`` dict argument to `Client.exec_command