15
0

- update to 1.17.0

- drop old_openssl.patch
 * Added support for “reverse direction” SSH connections, useful to support
   applications like NETCONF Call Home, described in RFC 8071.
 * Added support for the PyCA implementation of Chacha20-Poly1305, eliminating
   the dependency on libnacl/libsodium to provide this functionality,
   as long as OpenSSL 1.1.1b or later is installed.
 * Restored libnacl support for Curve25519/Ed25519 on systems which have
   an older version of OpenSSL that doesn’t have that support.
   This fallback also applies to Chacha20-Poly1305.
 * Disabled the use of RSA SHA-2 signatures when using the Pageant or Windows 10
   OpenSSH agent on Windows, since neither of those support the signature
   flags options to request them.
 * Fixed a regression where a callable was no longer usable in the
   sftp_factory argument of create_server.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-asyncssh?expand=0&rev=15
This commit is contained in:
2019-06-04 13:10:36 +00:00
committed by Git OBS Bridge
parent 48adbb0025
commit 04164981a4
5 changed files with 24 additions and 386 deletions

View File

@@ -1,3 +1,22 @@
-------------------------------------------------------------------
Tue Jun 4 13:07:40 UTC 2019 - Ondřej Súkup <mimi.vx@gmail.com>
- update to 1.17.0
- drop old_openssl.patch
* Added support for “reverse direction” SSH connections, useful to support
applications like NETCONF Call Home, described in RFC 8071.
* Added support for the PyCA implementation of Chacha20-Poly1305, eliminating
the dependency on libnacl/libsodium to provide this functionality,
as long as OpenSSL 1.1.1b or later is installed.
* Restored libnacl support for Curve25519/Ed25519 on systems which have
an older version of OpenSSL that doesnt have that support.
This fallback also applies to Chacha20-Poly1305.
* Disabled the use of RSA SHA-2 signatures when using the Pageant or Windows 10
OpenSSH agent on Windows, since neither of those support the signature
flags options to request them.
* Fixed a regression where a callable was no longer usable in the
sftp_factory argument of create_server.
-------------------------------------------------------------------
Tue Apr 23 08:29:31 UTC 2019 - Ondřej Súkup <mimi.vx@gmail.com>