Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
8 changes: 8 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
---------

Expand Down
Loading