pkgsrc-Changes archive

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

CVS commit: pkgsrc/www/py-aioquic



Module Name:    pkgsrc
Committed By:   adam
Date:           Thu Jun 27 11:34:42 UTC 2024

Modified Files:
        pkgsrc/www/py-aioquic: Makefile distinfo

Log Message:
py-aioquic: updated to 1.1.0

1.1.0
-----

* Improve path challenge handling and compliance with :rfc:`9000`.
* Limit the amount of buffered CRYPTO data to avoid memory exhaustion.
* Enable SHA-384 based signature algorithms and SECP384R1 key exchange.
* Build binary wheels against `OpenSSL`_ 3.3.0.

1.0.0
-----

* Ensure no data is sent after a stream reset.
* Make :class:`~aioquic.h3.connection.H3Connection`'s
  :meth:`~aioquic.h3.connection.H3Connection.send_datagram` and
  :meth:`~aioquic.h3.connection.H3Connection.send_push_promise` methods raise an
  :class:`~aioquic.h3.exceptions.InvalidStreamTypeError` exception if an
  invalid stream ID is specified.
* Improve the documentation for
  :class:`~aioquic.asyncio.QuicConnectionProtocol`'s
  :meth:`~aioquic.asyncio.QuicConnectionProtocol.transmit` method.
* Fix :meth:`~datetime.datetime.utcnow` deprecation warning on Python 3.12
  by using `cryptography`_ 42.0 and timezone-aware :class:`~datetime.datetime`
  instances when validating TLS certificates.
* Build binary wheels against `OpenSSL`_ 3.2.0.
* Ignore any non-ASCII ALPN values received.
* Perform more extensive HTTP/3 header validation in
  :class:`~aioquic.h3.connection.H3Connection`.
* Fix exceptions when draining stream writers in the :doc:`asyncio API <asyncio>`.
* Set the :class:`~aioquic.quic.connection.QuicConnection` idle timer according to
  :rfc:`9000` section 10.1.
* Implement fairer stream scheduling in :class:`~aioquic.quic.connection.QuicConnection`
  to avoid head-of-line blocking.
* Only load `certifi`_ root certificates if none was specified in the
  :class:`~aioquic.quic.configuration.QuicConfiguration`.
* Improve padding of UDP datagrams containing Initial packets to comply with :rfc:`9000`
  section 14.1.
* Limit the number of pending connection IDs marked for retirement to prevent a possible
  DoS attack.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 pkgsrc/www/py-aioquic/Makefile \
    pkgsrc/www/py-aioquic/distinfo

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

Modified files:

Index: pkgsrc/www/py-aioquic/Makefile
diff -u pkgsrc/www/py-aioquic/Makefile:1.2 pkgsrc/www/py-aioquic/Makefile:1.3
--- pkgsrc/www/py-aioquic/Makefile:1.2  Mon Feb 19 18:29:12 2024
+++ pkgsrc/www/py-aioquic/Makefile      Thu Jun 27 11:34:41 2024
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.2 2024/02/19 18:29:12 adam Exp $
+# $NetBSD: Makefile,v 1.3 2024/06/27 11:34:41 adam Exp $
 
-DISTNAME=      aioquic-0.9.25
+DISTNAME=      aioquic-1.1.0
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=    www python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=a/aioquic/}
@@ -12,11 +12,11 @@ LICENSE=    modified-bsd
 
 TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools-[0-9]*:../../devel/py-setuptools
 TOOL_DEPENDS+= ${PYPKGPREFIX}-wheel-[0-9]*:../../devel/py-wheel
+DEPENDS+=      ${PYPKGPREFIX}-OpenSSL>=22:../../security/py-OpenSSL
 DEPENDS+=      ${PYPKGPREFIX}-certifi>=0:../../security/py-certifi
+DEPENDS+=      ${PYPKGPREFIX}-cryptography>=42.0.0:../../security/py-cryptography
 DEPENDS+=      ${PYPKGPREFIX}-pylsqpack>=0.3.3:../../www/py-pylsqpack
-DEPENDS+=      ${PYPKGPREFIX}-cryptography>=0:../../security/py-cryptography
-DEPENDS+=      ${PYPKGPREFIX}-OpenSSL>=22:../../security/py-OpenSSL
-DEPENDS+=      ${PYPKGPREFIX}-service_identity>=23.1.0:../../security/py-service_identity
+DEPENDS+=      ${PYPKGPREFIX}-service_identity>=24.1.0:../../security/py-service_identity
 
 PYTHON_VERSIONS_INCOMPATIBLE=  27
 
Index: pkgsrc/www/py-aioquic/distinfo
diff -u pkgsrc/www/py-aioquic/distinfo:1.2 pkgsrc/www/py-aioquic/distinfo:1.3
--- pkgsrc/www/py-aioquic/distinfo:1.2  Mon Feb 19 18:29:12 2024
+++ pkgsrc/www/py-aioquic/distinfo      Thu Jun 27 11:34:41 2024
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.2 2024/02/19 18:29:12 adam Exp $
+$NetBSD: distinfo,v 1.3 2024/06/27 11:34:41 adam Exp $
 
-BLAKE2s (aioquic-0.9.25.tar.gz) = 49f7a8ab7016f68e99fda35aeb40e31633aa161e5bf258e8ee2a448c8f2df50e
-SHA512 (aioquic-0.9.25.tar.gz) = 182a2293caf0e1ca9581cf91f0aedc2560a8c80afb4d676eb57caebafb8096f27527a1cab52f1209e13bf387e9775248d4f2682052c88cb95b295e60b28565c7
-Size (aioquic-0.9.25.tar.gz) = 165877 bytes
+BLAKE2s (aioquic-1.1.0.tar.gz) = ef2cba859ffb8510385748cb45f202ea7b9a3f9b8271fcf96cb3cb1de32ead16
+SHA512 (aioquic-1.1.0.tar.gz) = cd0cbe1ccc5ead339f286ea81e569789f8c85d8d84f2c500a221210ad3d87a14f7917568dedf9fdb7f0553df2af13f290f3f2860bead5b273282d3cf685e8fd9
+Size (aioquic-1.1.0.tar.gz) = 177245 bytes



Home | Main Index | Thread Index | Old Index