pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/security/py-asyncssh



Module Name:    pkgsrc
Committed By:   adam
Date:           Sun Dec  1 11:45:35 UTC 2019

Modified Files:
        pkgsrc/security/py-asyncssh: Makefile distinfo

Log Message:
py-asyncssh: updated to 2.1.0

Release 2.1.0:
Added support in the SSHProcess redirect mechanism to accept asyncio StreamReader and StreamWriter objects, allowing asyncio streams to be plugged in as stdin/stdout/stderr in an SSHProcess.
Added support for key handlers in the AsyncSSH line editor to trigger signals being delivered when certain “hot keys” are hit while reading input.
Improved cleanup of unreturned connection objects when an error occurs or the connection request is canceled or times out.
Improved cleanup of SSH agent client objects to avoid triggering a false positive warning in Python 3.8.
Added an example to the documentation for how to create reverse-direction SSH client and server connections.
Made check of session objects against None explicit to avoid confusion on user-defined sessions that implement __len__ or __bool__.

Release 2.0.1:
Some API changes which should have been included in the 2.0.0 release were missed. This release corrects that, but means that additional changes may be needed in applications moving to 2.0.1. This 
should hopefully be the last of such changes, but if any other issues are discovered, additional changes will be limited to 2.0.x patch releases and the API will stabilize again in the AsyncSSH 2.1 
release. See the next bullet for details about the additional incompatible change.
To be consistent with other connect and listen functions, all methods on SSHClientConnection which previously returned None on listen failures have been changed to raise an exception instead. A new 
ChannelListenError exception will now be raised when an SSH server returns failure on a request to open a remote listener. This change affects the following SSHClientConnection methods: 
create_server, create_unix_server, start_server, start_unix_server, forward_remote_port, and forward_remote_path.
Restored the ability for SSHListener objects to be used as async context managers. This previously worked in AsyncSSH 1.x and was unintentionally broken in AsyncSSH 2.0.0.
Added support for a number of additional functions to be called from within an “async with” statement. These functions already returned objects capable of being async context managers, but were not 
decorated to allow them to be directly called from within “async with”. This change applies to the top level functions create_server, listen, and listen_reverse and the SSHClientConnection methods 
create_server, create_unix_server, start_server, start_unix_server, forward_local_port, forward_local_path, forward_remote_port, forward_remote_path, listen_ssh, and listen_reverse_ssh,
Fixed a couple of issues in loading OpenSSH-format certificates which were missing a trailing newline.
Changed load_certificates() to allow multiple certificates to be loaded from a single byte string argument, making it more consistent with how load_certificates() works when reading from a file.

Release 2.0.0:
NEW MAJOR VERSION: See below for potentially incompatible changes.
Updated AsyncSSH to use the modern async/await syntax internally, now requiring Python 3.6 or later. Those wishing to use AsyncSSH on Python 3.4 or 3.5 should stick to the AsyncSSH 1.x releases.
Changed first argument of SFTPServer constructor from an SSHServerConnection (conn) to an SSHServerChannel (chan) to allow custom SFTP server implementations to access environment variables set on 
the channel that SFTP is run over. Applications which subclass the SFTPServer class and implement an __init__ method will need to be updated to account for this change and pass the new argument 
through to the SFTPServer parent class. If the subclass has no __init__ and just uses the connection, channel, and env properties of SFTPServer to access this information, no changes should be 
required.
Removed deprecated “session_encoding” and “session_errors” arguments from create_server() and listen() functions. These arguments were renamed to “encoding” and “errors” back in version 1.16.0 to be 
consistent with other AsyncSSH APIs.
Removed get_environment(), get_command(), and get_subsystem() methods on SSHServerProcess class. This information was made available as “env”, “command”, and “subsystem” properties of 
SSHServerProcess in AsyncSSH 1.11.0.
Removed optional loop argument from all public AsyncSSH APIs, consistent with the deprecation of this argument in the asyncio package in Python 3.8. Calls will now always use the event loop which is 
active at the time of the call.
Removed support for non-async context managers on AsyncSSH connections and processes and SFTP client connections and file objects. Callers should use “async with” to invoke the async the context 
managers on these objects.
Added support for SSHAgentClient being an async context manager. To be consistent with other connect calls, connect_agent() will now raise an exception when no agent is found or a connection failure 
occurs, rather than logging a warning and returning None. Callers should catch OSError or ChannelOpenError exceptions rather than looking for a return value of None when calling this function.
Added set_input() and clear_input() methods on SSHLineEditorChannel to change the value of the current input line when line editing is enabled.
Added is_closing() method to the SSHChannel, SSHProcess, SSHWriter, and SSHSubprocessTransport classes. mirroring the asyncio BaseTransport and StreamWriter methods added in Python 3.7.
Added wait_closed() async method to the SSHWriter class, mirroring the asyncio StreamWriter method added in Python 3.7.


To generate a diff of this commit:
cvs rdiff -u -r1.17 -r1.18 pkgsrc/security/py-asyncssh/Makefile \
    pkgsrc/security/py-asyncssh/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/security/py-asyncssh/Makefile
diff -u pkgsrc/security/py-asyncssh/Makefile:1.17 pkgsrc/security/py-asyncssh/Makefile:1.18
--- pkgsrc/security/py-asyncssh/Makefile:1.17   Sun Aug 25 12:24:06 2019
+++ pkgsrc/security/py-asyncssh/Makefile        Sun Dec  1 11:45:35 2019
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.17 2019/08/25 12:24:06 adam Exp $
+# $NetBSD: Makefile,v 1.18 2019/12/01 11:45:35 adam Exp $
 
-DISTNAME=      asyncssh-1.18.0
+DISTNAME=      asyncssh-2.1.0
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=    security python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=a/asyncssh/}
@@ -12,7 +12,7 @@ LICENSE=      eclipse-license
 
 DEPENDS+=      ${PYPKGPREFIX}-OpenSSL>=17.0.0:../../security/py-OpenSSL
 DEPENDS+=      ${PYPKGPREFIX}-bcrypt>=3.1.3:../../security/py-bcrypt
-DEPENDS+=      ${PYPKGPREFIX}-cryptography>=2.6.1:../../security/py-cryptography
+DEPENDS+=      ${PYPKGPREFIX}-cryptography>=2.8:../../security/py-cryptography
 DEPENDS+=      ${PYPKGPREFIX}-gssapi>=1.2.0:../../security/py-gssapi
 
 PYTHON_VERSIONS_INCOMPATIBLE=  27
Index: pkgsrc/security/py-asyncssh/distinfo
diff -u pkgsrc/security/py-asyncssh/distinfo:1.17 pkgsrc/security/py-asyncssh/distinfo:1.18
--- pkgsrc/security/py-asyncssh/distinfo:1.17   Sun Aug 25 12:24:06 2019
+++ pkgsrc/security/py-asyncssh/distinfo        Sun Dec  1 11:45:35 2019
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.17 2019/08/25 12:24:06 adam Exp $
+$NetBSD: distinfo,v 1.18 2019/12/01 11:45:35 adam Exp $
 
-SHA1 (asyncssh-1.18.0.tar.gz) = 2362242158e7e816c62c7b1224d5f11efff8f591
-RMD160 (asyncssh-1.18.0.tar.gz) = 7582f435c7a0ba15e0248e87a4f47c4721fdf577
-SHA512 (asyncssh-1.18.0.tar.gz) = 971d3d9e4ef97e7b6c487b90219f2959c163fd1330f9936fb727b24d626b073cd2ab0d57e741ae875b67d506e2bda8c9371e54d7e98890c1bebe2e1a848aa02e
-Size (asyncssh-1.18.0.tar.gz) = 327950 bytes
+SHA1 (asyncssh-2.1.0.tar.gz) = b937691ab5a3b2dde3cc424b9fef13481a2a253d
+RMD160 (asyncssh-2.1.0.tar.gz) = 3decf62c9f150aac3c41ba578cce7e5d69dbf48a
+SHA512 (asyncssh-2.1.0.tar.gz) = 10701163a3133a83fd74759a19fe5da978ae72f1bcd68be2dbe1827ab2f4e75e09ca38514dd51b6086a284a4ad1721504cb47808ae411aa2c6c71a04aa2f144a
+Size (asyncssh-2.1.0.tar.gz) = 325135 bytes



Home | Main Index | Thread Index | Old Index