17
0

Accepting request 1309994 from home:glaubitz:branches:devel:languages:python

- Update to 2.21.1
  * Added the capability to defer invoking passphrase callback until
    an encrypted private key is actually used in a signing operation,
    rather than triggering the callback when keys are loaded. This
    will only work when a public key is provided with an encrypted
    private key either explicitly or as part of the key format (such
    as in OpenSSH's private key format).
  * Improved handling of KeyboardInterrupt and task cancellation in
    SCP. Thanks go to Viktor Kertesz for reporting this issue and
    helping to understand the behavior in various versions of Python.
  * Fixed the env option to support mappings other than dict. Thanks
    go to Boris Pavlovic for reporting this issue.
  * Fixed a potential race condition in SSHForwarder cleanup. Thanks
    go to GitHub user misa-hase for reporting this issue and helping
    to test the fix.

OBS-URL: https://build.opensuse.org/request/show/1309994
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-asyncssh?expand=0&rev=66
This commit is contained in:
2025-10-09 13:54:02 +00:00
committed by Git OBS Bridge
parent 8fd3233b31
commit 916f96d9e4
4 changed files with 23 additions and 4 deletions

View File

@@ -1,3 +1,22 @@
-------------------------------------------------------------------
Thu Oct 9 12:26:08 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
- Update to 2.21.1
* Added the capability to defer invoking passphrase callback until
an encrypted private key is actually used in a signing operation,
rather than triggering the callback when keys are loaded. This
will only work when a public key is provided with an encrypted
private key either explicitly or as part of the key format (such
as in OpenSSH's private key format).
* Improved handling of KeyboardInterrupt and task cancellation in
SCP. Thanks go to Viktor Kertesz for reporting this issue and
helping to understand the behavior in various versions of Python.
* Fixed the env option to support mappings other than dict. Thanks
go to Boris Pavlovic for reporting this issue.
* Fixed a potential race condition in SSHForwarder cleanup. Thanks
go to GitHub user misa-hase for reporting this issue and helping
to test the fix.
-------------------------------------------------------------------
Sat Jul 12 17:35:09 UTC 2025 - Dirk Müller <dmueller@suse.com>