15
0

- Update to 2.9.0:

- Added mypy-compatible type annotations to all AsyncSSH
    modules, and a "py.typed" file to signal that annotations are
    now available for this package.
  - Added experimental support for SFTP versions 4-6. While
    AsyncSSH still defaults to only advertising version 3 when
    acting as both a client and a server, applications can
    explicitly enable support for later versions, which will be
    used if both ends of the connection agree. Not all features
    are fully supported, but a number of useful enhancements are
    now available, including as users and groups specified by
    name, higher resolution timestamps, and more granular error
    reporting.
  - Updated documentation to make it clear that keys from
    a PKCS11 provider or ssh-agent will be used even when
    client_keys is specified, unless those sources are explicitly
    disabled.
  - Improved handling of task cancellation in AsyncSSH to
    avoid triggering an error of "Future exception was never
    retrieved". Thanks go to Krzysztof Kotlenga for reporting
    this issue and providing test code to reliably reproduce it.
  - Changed implementation of OpenSSH keepalive handler to
    improve interoperability with servers which don't expect a
    "success" response when this message is sent.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-asyncssh?expand=0&rev=34
This commit is contained in:
2022-01-29 00:51:13 +00:00
committed by Git OBS Bridge
parent d4a6c78d04
commit d4b3545e20
5 changed files with 44 additions and 13 deletions

View File

@@ -1,3 +1,32 @@
-------------------------------------------------------------------
Fri Jan 28 23:45:58 UTC 2022 - Matej Cepl <mcepl@suse.com>
- Update to 2.9.0:
- Added mypy-compatible type annotations to all AsyncSSH
modules, and a "py.typed" file to signal that annotations are
now available for this package.
- Added experimental support for SFTP versions 4-6. While
AsyncSSH still defaults to only advertising version 3 when
acting as both a client and a server, applications can
explicitly enable support for later versions, which will be
used if both ends of the connection agree. Not all features
are fully supported, but a number of useful enhancements are
now available, including as users and groups specified by
name, higher resolution timestamps, and more granular error
reporting.
- Updated documentation to make it clear that keys from
a PKCS11 provider or ssh-agent will be used even when
client_keys is specified, unless those sources are explicitly
disabled.
- Improved handling of task cancellation in AsyncSSH to
avoid triggering an error of "Future exception was never
retrieved". Thanks go to Krzysztof Kotlenga for reporting
this issue and providing test code to reliably reproduce it.
- Changed implementation of OpenSSH keepalive handler to
improve interoperability with servers which don't expect a
"success" response when this message is sent.
-------------------------------------------------------------------
Fri Dec 17 12:41:16 UTC 2021 - Michael Ströder <michael@stroeder.com>