15
0

- update to 2.2.1

* Added optional timeout parameter to SSHClientProcess.wait()
    and SSHClientConnection.run() methods.
 * Created subclasses for SFTPError exceptions, allowing applications
    to more easily have distinct exception handling for different errors.
 * Fixed an issue in SFTP parallel I/O related to handling low-level
    connection failures
 * Fixed an issue with SFTP file copy where a local file could sometimes
    be left open if an attempt to close a remote file failed.
 * Fixed an issue in the handling of boolean return values when
    SSHServer.server_requested() returns a coroutine
 * Fixed an issue with passing tuples to the SFTP copy functions.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-asyncssh?expand=0&rev=26
This commit is contained in:
2020-07-09 22:38:34 +00:00
committed by Git OBS Bridge
parent 14ec0db318
commit a8efe840a6
4 changed files with 20 additions and 4 deletions

View File

@@ -1,3 +1,19 @@
-------------------------------------------------------------------
Thu Jul 9 22:36:54 UTC 2020 - Ondřej Súkup <mimi.vx@gmail.com>
- update to 2.2.1
* Added optional timeout parameter to SSHClientProcess.wait()
and SSHClientConnection.run() methods.
* Created subclasses for SFTPError exceptions, allowing applications
to more easily have distinct exception handling for different errors.
* Fixed an issue in SFTP parallel I/O related to handling low-level
connection failures
* Fixed an issue with SFTP file copy where a local file could sometimes
be left open if an attempt to close a remote file failed.
* Fixed an issue in the handling of boolean return values when
SSHServer.server_requested() returns a coroutine
* Fixed an issue with passing tuples to the SFTP copy functions.
-------------------------------------------------------------------
Mon Mar 2 14:19:17 UTC 2020 - Ondřej Súkup <mimi.vx@gmail.com>