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:           Wed Nov 13 10:31:54 UTC 2024

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

Log Message:
py-asyncssh: updated to 2.18.0

Release 2.18.0 (26 Oct 2024)
----------------------------

* Added support for post-quantum ML-KEM key exchange algorithms,
  interoperable with OpenSSH 9.9.

* Added support for the OpenSSH "limits" extension, allowing the
  client to query server limits such as the maximum supported read
  and write sizes. The client will automatically default to the reported
  maximum size on servers that support this extension.

* Added more ways to specify environment variables via the `env` option.
  Sequences of either 'key=value' strings or (key, value) tuples are now
  supported, in addition to a dict.

* Added support for getting/setting environment variables as byte strings
  on platforms which support it. Previously, only Unicode strings were
  accepted and they were always encoded on the wire using UTF-8.

* Added support for non-TCP sockets (such as a socketpair) as the `sock`
  parameter in connect calls. Thanks go to Christian Wendt for reporting
  this problem and proposing a fix.

* Changed compression to be disabled by default to avoid it becoming a
  performance bottleneck on high-bandwidth connections. This now also
  matches the OpenSSH default.

* Improved speed of parallelized SFTP reads when read-ahead goes beyond
  the end of the file. Thanks go to Maximilian Knespel for reporting
  this issue and providing performance measurements on the code before
  and after the change.

* Improved cancellation handling during SCP transfers.

* Improved support for selecting the currently available security key
  when the application lists multiple keys to try. Thanks go to GitHub
  user zanda8893 for reporting the issue and helping to work out the
  details of the problem.

* Improved handling of reverse DNS failures in host-based authentication.
  Thanks go to GitHub user xBiggs for suggesting this change.

* Improved debug logging of byte strings with non-printable characters.

* Switched to using an executor on GSSAPI calls to avoid blocking the
  event loop.

* Fixed handling of "UserKnownHostsFile none" in config files. This
  previously caused it to use the default known hosts, rather than
  disabling known host checking.

* Fixed a runtime warning about not awaiting a coroutine in unit tests.

* Fixed a unit test failure on Windows when calling abort on a transport.

* Fixed a problem where a "MAC verification failed" error was sometimes
  sent on connection close.

* Fixed SSHClientProcess code to not raise a runtime exception when
  waiting more than once for a process to finish. Thanks go to GitHub
  user starflows for reporting this issue.

* Handled an error when attempting to import older verions of pyOpenSSL.
  Thanks go to Maximilian Knespel for reporting this issue and testing
  the fix.

* Updated simple_server example code to switch from crypt to bcrypt,
  since crypt has been removed in Python 3.13. Thanks go to Colin
  Watson for providing this update.


To generate a diff of this commit:
cvs rdiff -u -r1.46 -r1.47 pkgsrc/security/py-asyncssh/Makefile
cvs rdiff -u -r1.15 -r1.16 pkgsrc/security/py-asyncssh/PLIST
cvs rdiff -u -r1.42 -r1.43 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.46 pkgsrc/security/py-asyncssh/Makefile:1.47
--- pkgsrc/security/py-asyncssh/Makefile:1.46   Mon Nov 11 07:28:54 2024
+++ pkgsrc/security/py-asyncssh/Makefile        Wed Nov 13 10:31:54 2024
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.46 2024/11/11 07:28:54 wiz Exp $
+# $NetBSD: Makefile,v 1.47 2024/11/13 10:31:54 adam Exp $
 
-DISTNAME=      asyncssh-2.17.0
+DISTNAME=      asyncssh-2.18.0
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=    security python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=a/asyncssh/}

Index: pkgsrc/security/py-asyncssh/PLIST
diff -u pkgsrc/security/py-asyncssh/PLIST:1.15 pkgsrc/security/py-asyncssh/PLIST:1.16
--- pkgsrc/security/py-asyncssh/PLIST:1.15      Thu Jul  4 10:06:35 2024
+++ pkgsrc/security/py-asyncssh/PLIST   Wed Nov 13 10:31:54 2024
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.15 2024/07/04 10:06:35 adam Exp $
+@comment $NetBSD: PLIST,v 1.16 2024/11/13 10:31:54 adam Exp $
 ${PYSITELIB}/${WHEEL_INFODIR}/LICENSE
 ${PYSITELIB}/${WHEEL_INFODIR}/METADATA
 ${PYSITELIB}/${WHEEL_INFODIR}/RECORD
@@ -73,12 +73,12 @@ ${PYSITELIB}/asyncssh/crypto/kdf.pyo
 ${PYSITELIB}/asyncssh/crypto/misc.py
 ${PYSITELIB}/asyncssh/crypto/misc.pyc
 ${PYSITELIB}/asyncssh/crypto/misc.pyo
+${PYSITELIB}/asyncssh/crypto/pq.py
+${PYSITELIB}/asyncssh/crypto/pq.pyc
+${PYSITELIB}/asyncssh/crypto/pq.pyo
 ${PYSITELIB}/asyncssh/crypto/rsa.py
 ${PYSITELIB}/asyncssh/crypto/rsa.pyc
 ${PYSITELIB}/asyncssh/crypto/rsa.pyo
-${PYSITELIB}/asyncssh/crypto/sntrup.py
-${PYSITELIB}/asyncssh/crypto/sntrup.pyc
-${PYSITELIB}/asyncssh/crypto/sntrup.pyo
 ${PYSITELIB}/asyncssh/crypto/umac.py
 ${PYSITELIB}/asyncssh/crypto/umac.pyc
 ${PYSITELIB}/asyncssh/crypto/umac.pyo

Index: pkgsrc/security/py-asyncssh/distinfo
diff -u pkgsrc/security/py-asyncssh/distinfo:1.42 pkgsrc/security/py-asyncssh/distinfo:1.43
--- pkgsrc/security/py-asyncssh/distinfo:1.42   Mon Sep  9 07:04:00 2024
+++ pkgsrc/security/py-asyncssh/distinfo        Wed Nov 13 10:31:54 2024
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.42 2024/09/09 07:04:00 adam Exp $
+$NetBSD: distinfo,v 1.43 2024/11/13 10:31:54 adam Exp $
 
-BLAKE2s (asyncssh-2.17.0.tar.gz) = 825765a649d06d30cd81552cd0dba5b02e9de3c4da41fc5f26fcece7d4a5ba34
-SHA512 (asyncssh-2.17.0.tar.gz) = be4d25185008dacde8369249ae8321c403590423dd6f088ca6568333be9e96a93509f9663e5292d5bbe27ea20064bc530f0867dd05aef2a453bc1f8eeff1ed40
-Size (asyncssh-2.17.0.tar.gz) = 515658 bytes
+BLAKE2s (asyncssh-2.18.0.tar.gz) = 156e8bc0ea3749bf455da1f2e2ed142eed5943faf357db216c5caeb45f3cf84e
+SHA512 (asyncssh-2.18.0.tar.gz) = e708b7bd4fe7644b699b914557c9df2b47b718d2eca10a49edf0c7d6a740026e3c509040d7b5793db2a298001a815583db122975f111733b9d5921174e6f024f
+Size (asyncssh-2.18.0.tar.gz) = 526304 bytes



Home | Main Index | Thread Index | Old Index