Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
ae2b050
Increment version to 3.11.10.dev0 (#10087)
bdraco Dec 1, 2024
86bb6ad
[PR #10088/29c3ca93 backport][3.11] Avoid calling len on the same dat…
patchback[bot] Dec 2, 2024
6865d6b
[PR #10088/29c3ca93 backport][3.12] Avoid calling len on the same dat…
patchback[bot] Dec 2, 2024
d872e34
[PR #10074/f733258e backport][3.12] Support absolute url to override …
patchback[bot] Dec 2, 2024
094ffb6
[PR #10095/fcce1bf6 backport][3.12] Add a benchmark for web.FileRespo…
patchback[bot] Dec 4, 2024
c41ffc7
[PR #10095/fcce1bf6 backport][3.11] Add a benchmark for web.FileRespo…
patchback[bot] Dec 4, 2024
23a4b31
[PR #10102/7557b03d backport][3.11] Fix deprecated calls to `guess_ty…
patchback[bot] Dec 4, 2024
f180fc1
[PR #10102/7557b03d backport][3.12] Fix deprecated calls to `guess_ty…
patchback[bot] Dec 4, 2024
07d1759
[PR #10101/678993a4 backport][3.11] Fix race in `FileResponse` if fil…
patchback[bot] Dec 4, 2024
fa6804c
[PR #10101/678993a4 backport][3.12] Fix race in `FileResponse` if fil…
patchback[bot] Dec 4, 2024
ae153ab
[PR #10107/84bb77d1 backport][3.11] Use internal `self._headers` var …
patchback[bot] Dec 4, 2024
8745cf4
[PR #10107/84bb77d1 backport][3.12] Use internal `self._headers` var …
patchback[bot] Dec 4, 2024
78473b9
[PR #10114/94569554 backport][3.11] Add 304 benchmark for FileRespons…
patchback[bot] Dec 5, 2024
cd0c2c8
[PR #10114/94569554 backport][3.12] Add 304 benchmark for FileRespons…
patchback[bot] Dec 5, 2024
6207a6d
[PR #10113/01302134 backport][3.12] Restore 304 performance after fix…
patchback[bot] Dec 5, 2024
bcae561
[PR #10113/01302134 backport][3.11] Restore 304 performance after fix…
patchback[bot] Dec 5, 2024
db5e6bb
[PR #10122/703ce61 backport][3.11] Typing improvements for file respo…
bdraco Dec 5, 2024
da4e00b
[PR #10122/703ce61 backport][3.12] Typing improvements for file respo…
bdraco Dec 5, 2024
5ddff95
[PR #10125/d58d2c3d backport][3.11] Disable zero copy writes in the `…
patchback[bot] Dec 5, 2024
6462f75
[PR #10125/d58d2c3d backport][3.12] Disable zero copy writes in the `…
patchback[bot] Dec 5, 2024
0d7352a
Release 3.11.10 (#10128)
bdraco Dec 5, 2024
0d886aa
Merge branch '3.11' into 3.12
bdraco Dec 5, 2024
210c381
Merge branch '3.12'
bdraco Dec 5, 2024
7f92beb
Bump Python version for benchmarks to 3.13 (#10131)
bdraco Dec 6, 2024
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
4 changes: 2 additions & 2 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -266,11 +266,11 @@ jobs:
uses: actions/checkout@v4
with:
submodules: true
- name: Setup Python 3.12
- name: Setup Python 3.13
id: python-install
uses: actions/setup-python@v5
with:
python-version: 3.12
python-version: 3.13
cache: pip
cache-dependency-path: requirements/*.txt
- name: Update pip, wheel, setuptools, build, twine
Expand Down
34 changes: 34 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,40 @@

.. towncrier release notes start

3.11.10 (2024-12-05)
====================

Bug fixes
---------

- Fixed race condition in :class:`aiohttp.web.FileResponse` that could have resulted in an incorrect response if the file was replaced on the file system during ``prepare`` -- by :user:`bdraco`.


*Related issues and pull requests on GitHub:*
:issue:`10101`, :issue:`10113`.



- Replaced deprecated call to :func:`mimetypes.guess_type` with :func:`mimetypes.guess_file_type` when using Python 3.13+ -- by :user:`bdraco`.


*Related issues and pull requests on GitHub:*
:issue:`10102`.



- Disabled zero copy writes in the ``StreamWriter`` -- by :user:`bdraco`.


*Related issues and pull requests on GitHub:*
:issue:`10125`.




----


3.11.9 (2024-12-01)
===================

Expand Down
1 change: 0 additions & 1 deletion CHANGES/10101.bugfix.rst

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/10102.bugfix.rst

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/10113.bugfix.rst

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/10125.bugfix.rst

This file was deleted.

Loading