summaryrefslogtreecommitdiff
path: root/sites
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2021-07-23 14:22:40 -0400
committerJeff Forcier <jeff@bitprophet.org>2021-07-23 14:22:40 -0400
commit93f39d636ef93f6ea442f78f8bb81ff562d284f4 (patch)
treea17dcd71b8ca4744687b8c40b27b51bc32f74db9 /sites
parentd2d3d77395d1079a2e335080b7f9f79d3f70ad2a (diff)
parentfee7612f8a397d2fc0bd819401ffc3987def7f18 (diff)
downloadparamiko-93f39d636ef93f6ea442f78f8bb81ff562d284f4.tar.gz
Merge branch '2.7' into master
Diffstat (limited to 'sites')
-rw-r--r--sites/www/changelog.rst5
1 files changed, 5 insertions, 0 deletions
diff --git a/sites/www/changelog.rst b/sites/www/changelog.rst
index 7f70c232..6dc29569 100644
--- a/sites/www/changelog.rst
+++ b/sites/www/changelog.rst
@@ -2,6 +2,11 @@
Changelog
=========
+- :bug:`1882` Newer server-side key exchange algorithms not intended to use
+ SHA1 (``diffie-hellman-group14-sha256``, ``diffie-hellman-group16-sha512``)
+ were incorrectly using SHA1 after all, due to a bug causing them to ignore
+ the ``hash_algo`` class attribute. This has been corrected. Big thanks to
+ Benno Rice for catch & patch.
- :feature:`1846` Add a ``prefetch`` keyword argument to `SFTPClient.get <paramiko.sftp_client.SFTPClient.get>`/`SFTPClient.getfo <paramiko.sftp_client.SFTPClient.getfo>`
so users who need to skip SFTP prefetching are able to conditionally turn it
off. Thanks to Github user ``@h3ll0r`` for the PR.