From 43ea3b1da666b55c6ab3ba4b59f9b0f18294fe1e Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Thu, 12 Jun 2025 14:32:39 -0500 Subject: [PATCH 1/2] Pin CI Python version to 3.13.3 (#11193) --- .github/workflows/ci-cd.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index 2a46be96ea2..d9640337d31 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -138,7 +138,11 @@ jobs: needs: gen_llhttp strategy: matrix: - pyver: [3.9, '3.10', '3.11', '3.12', '3.13'] + # Note that 3.13.4 is broken on Windows which + # is why 3.13.5 was rushed out. When 3.13.5 is fully + # available, we can remove 3.13.4 from the matrix + # and switch it back to 3.13 + pyver: [3.9, '3.10', '3.11', '3.12', '3.13.3'] no-extensions: ['', 'Y'] os: [ubuntu, macos, windows] experimental: [false] From b888dc5cb6395d9ceae5b877aad2855353ae352c Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Thu, 12 Jun 2025 15:46:21 -0500 Subject: [PATCH 2/2] Add warning to release notes about the quote_cookie fix (#11192) --- CHANGES.rst | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/CHANGES.rst b/CHANGES.rst index d14740c407f..9c1c9a001c0 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -153,6 +153,14 @@ Features 3.12.7 (2025-06-02) =================== +.. warning:: + + This release fixes an issue where the ``quote_cookie`` parameter was not being properly + respected for shared cookies (domain="", path=""). If your server does not handle quoted + cookies correctly, you may need to disable cookie quoting by setting ``quote_cookie=False`` + when creating your :class:`~aiohttp.ClientSession` or :class:`~aiohttp.CookieJar`. + See :ref:`aiohttp-client-cookie-quoting-routine` for details. + Bug fixes ---------