pkgsrc-Changes archive

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

CVS commit: pkgsrc/www/py-aiohttp



Module Name:    pkgsrc
Committed By:   adam
Date:           Tue Jun  3 18:01:14 UTC 2025

Modified Files:
        pkgsrc/www/py-aiohttp: Makefile PLIST distinfo

Log Message:
py-aiohttp: updated to 3.12.7

3.12.7 (2025-06-02)

Bug fixes

- Fixed cookie parsing to be more lenient when handling cookies with special characters
  in names or values. Cookies with characters like ``{``, ``}``, and ``/`` in names are now
  accepted instead of causing a :exc:`~http.cookies.CookieError` and 500 errors. Additionally,
  cookies with mismatched quotes in values are now parsed correctly, and quoted cookie
  values are now handled consistently whether or not they include special attributes
  like ``Domain``. Also fixed :class:`~aiohttp.CookieJar` to ensure shared cookies (domain="", path="")
  respect the ``quote_cookie`` parameter, making cookie quoting behavior consistent for
  all cookies

- Fixed an issue where cookies with duplicate names but different domains or paths
  were lost when updating the cookie jar. The :class:`~aiohttp.ClientSession`
  cookie jar now correctly stores all cookies even if they have the same name but
  different domain or path, following the :rfc:`6265#section-5.3` storage model

  Note that :attr:`ClientResponse.cookies <aiohttp.ClientResponse.cookies>` returns
  a :class:`~http.cookies.SimpleCookie` which uses the cookie name as a key, so
  only the last cookie with each name is accessible via this interface. All cookies
  can be accessed via :meth:`ClientResponse.headers.getall('Set-Cookie')
  <multidict.MultiDictProxy.getall>` if needed.

Miscellaneous internal changes

- Avoided creating closed futures in ``ResponseHandler`` that will never be awaited
- Downgraded the logging level for connector close errors from ERROR to DEBUG, as these are expected behavior with TLS 1.3 connections


To generate a diff of this commit:
cvs rdiff -u -r1.91 -r1.92 pkgsrc/www/py-aiohttp/Makefile
cvs rdiff -u -r1.17 -r1.18 pkgsrc/www/py-aiohttp/PLIST
cvs rdiff -u -r1.85 -r1.86 pkgsrc/www/py-aiohttp/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-aiohttp/Makefile
diff -u pkgsrc/www/py-aiohttp/Makefile:1.91 pkgsrc/www/py-aiohttp/Makefile:1.92
--- pkgsrc/www/py-aiohttp/Makefile:1.91 Sun Jun  1 05:46:26 2025
+++ pkgsrc/www/py-aiohttp/Makefile      Tue Jun  3 18:01:14 2025
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.91 2025/06/01 05:46:26 adam Exp $
+# $NetBSD: Makefile,v 1.92 2025/06/03 18:01:14 adam Exp $
 
-DISTNAME=      aiohttp-3.12.6
+DISTNAME=      aiohttp-3.12.7
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=    www python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=a/aiohttp/}

Index: pkgsrc/www/py-aiohttp/PLIST
diff -u pkgsrc/www/py-aiohttp/PLIST:1.17 pkgsrc/www/py-aiohttp/PLIST:1.18
--- pkgsrc/www/py-aiohttp/PLIST:1.17    Mon May 26 09:41:15 2025
+++ pkgsrc/www/py-aiohttp/PLIST Tue Jun  3 18:01:14 2025
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.17 2025/05/26 09:41:15 adam Exp $
+@comment $NetBSD: PLIST,v 1.18 2025/06/03 18:01:14 adam Exp $
 ${PYSITELIB}/${WHEEL_INFODIR}/METADATA
 ${PYSITELIB}/${WHEEL_INFODIR}/RECORD
 ${PYSITELIB}/${WHEEL_INFODIR}/WHEEL
@@ -12,6 +12,9 @@ ${PYSITELIB}/aiohttp/.hash/hdrs.py.hash
 ${PYSITELIB}/aiohttp/__init__.py
 ${PYSITELIB}/aiohttp/__init__.pyc
 ${PYSITELIB}/aiohttp/__init__.pyo
+${PYSITELIB}/aiohttp/_cookie_helpers.py
+${PYSITELIB}/aiohttp/_cookie_helpers.pyc
+${PYSITELIB}/aiohttp/_cookie_helpers.pyo
 ${PYSITELIB}/aiohttp/_cparser.pxd
 ${PYSITELIB}/aiohttp/_find_header.pxd
 ${PYSITELIB}/aiohttp/_headers.pxi

Index: pkgsrc/www/py-aiohttp/distinfo
diff -u pkgsrc/www/py-aiohttp/distinfo:1.85 pkgsrc/www/py-aiohttp/distinfo:1.86
--- pkgsrc/www/py-aiohttp/distinfo:1.85 Sun Jun  1 05:46:26 2025
+++ pkgsrc/www/py-aiohttp/distinfo      Tue Jun  3 18:01:14 2025
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.85 2025/06/01 05:46:26 adam Exp $
+$NetBSD: distinfo,v 1.86 2025/06/03 18:01:14 adam Exp $
 
-BLAKE2s (aiohttp-3.12.6.tar.gz) = b5c7761285d777f49d9fa608d0186e716592536b29222ea40542e5c4c12e9454
-SHA512 (aiohttp-3.12.6.tar.gz) = e73e57cf185bdf52e020856c9254be407663d75eeeb52e6ac3c0d57a77719d82539006347980319c7eed79ff8f3692355ade00d82929ed11a35ddb718b1cebca
-Size (aiohttp-3.12.6.tar.gz) = 7784449 bytes
+BLAKE2s (aiohttp-3.12.7.tar.gz) = fd1295fa3228a28f5843a64806432944ac1c2b52654c46c34b1a597ca2867a96
+SHA512 (aiohttp-3.12.7.tar.gz) = 1de4933912a3f5e599b6600785627f7ada49f511ace1265eacb303cdd5acd52c34f33c8d202e3f2949aa303fc25e73976f938600c3892f19d6b8e754275f1a98
+Size (aiohttp-3.12.7.tar.gz) = 7806530 bytes



Home | Main Index | Thread Index | Old Index