-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Comparing changes
Open a pull request
base repository: aio-libs/aiohttp
base: v3.11.13
head repository: aio-libs/aiohttp
compare: v3.11.14
- 12 commits
- 17 files changed
- 3 contributors
Commits on Feb 24, 2025
-
Configuration menu - View commit details
-
Copy full SHA for 613a3f0 - Browse repository at this point
Copy the full SHA 613a3f0View commit details
Commits on Feb 26, 2025
-
[PR #10493/8e8fa959 backport][3.11] Document adjustments to the relea…
Configuration menu - View commit details
-
Copy full SHA for 40fe535 - Browse repository at this point
Copy the full SHA 40fe535View commit details
Commits on Mar 15, 2025
-
[PR #10553/55c5f1fc backport][3.11] Add benchmark for JSON post reque…
…sts that check the content type (#10554) **This is a backport of PR #10553 as merged into master (55c5f1f).** <!-- Thank you for your contribution! --> ## What do these changes do? Add benchmark for JSON post requests that check the content type ## Are there changes in behavior for the user? no ## Is it a substantial burden for the maintainers to support this? no Co-authored-by: J. Nick Koston <nick@koston.org>
Configuration menu - View commit details
-
Copy full SHA for 7205661 - Browse repository at this point
Copy the full SHA 7205661View commit details -
[PR #10552/44e669be backport][3.11] Cache parsing of the content-type (…
…#10557) **This is a backport of PR #10552 as merged into master (44e669b).** <!-- Thank you for your contribution! --> ## What do these changes do? When profiling some frequent POST requests, I found the bulk of the time was spent parsing the content-type string. Use the same strategy as we do for `parse_mimetype` to cache the parsing. ## Are there changes in behavior for the user? performance improvement ## Is it a substantial burden for the maintainers to support this? no ## Related issue number <!-- Are there any issues opened that will be resolved by merging this change? --> <!-- Remember to prefix with 'Fixes' if it should close the issue (e.g. 'Fixes #123'). --> ## Checklist - [x] I think the code is well written - [ ] Unit tests for the changes exist - [ ] Documentation reflects the changes - [ ] If you provide code modification, please add yourself to `CONTRIBUTORS.txt` * The format is <Name> <Surname>. * Please keep alphabetical order, the file is sorted by names. - [ ] Add a new news fragment into the `CHANGES/` folder * name it `<issue_or_pr_num>.<type>.rst` (e.g. `588.bugfix.rst`) * if you don't have an issue number, change it to the pull request number after creating the PR * `.bugfix`: A bug fix for something the maintainers deemed an improper undesired behavior that got corrected to match pre-agreed expectations. * `.feature`: A new behavior, public APIs. That sort of stuff. * `.deprecation`: A declaration of future API removals and breaking changes in behavior. * `.breaking`: When something public is removed in a breaking way. Could be deprecated in an earlier release. * `.doc`: Notable updates to the documentation structure or build process. * `.packaging`: Notes for downstreams about unobvious side effects and tooling. Changes in the test invocation considerations and runtime assumptions. * `.contrib`: Stuff that affects the contributor experience. e.g. Running tests, building the docs, setting up the development environment. * `.misc`: Changes that are hard to assign to any of the above categories. * Make sure to use full sentences with correct case and punctuation, for example: ```rst Fixed issue with non-ascii contents in doctest text files -- by :user:`contributor-gh-handle`. ``` Use the past tense or the present tense a non-imperative mood, referring to what's changed compared to the last released version of this project. <img width="570" alt="Screenshot 2025-03-15 at 11 25 10 AM" src="https://github.com/user-attachments/assets/cabaaa7c-3a39-4f90-b450-a6a0559d22d6" /> Co-authored-by: J. Nick Koston <nick@koston.org>
Configuration menu - View commit details
-
Copy full SHA for 928e6d7 - Browse repository at this point
Copy the full SHA 928e6d7View commit details
Commits on Mar 16, 2025
-
[PR #10529/492f63dc backport][3.11] Fixed bug that lead to infinite w…
…ait for dns futures (#10559) **This is a backport of PR #10529 as merged into master (492f63d).** <!-- Thank you for your contribution! --> ## What do these changes do? Fixed bug that lead to infinite wait for dns futures when exception occured in trace.send_dns_cache_miss call. ## Are there changes in behavior for the user? No ## Is it a substantial burden for the maintainers to support this? No ## Related issue number No issue. ## Checklist - [x] I think the code is well written - [x] Unit tests for the changes exist - [x] Documentation reflects the changes - [x] If you provide code modification, please add yourself to `CONTRIBUTORS.txt` * The format is <Name> <Surname>. * Please keep alphabetical order, the file is sorted by names. - [x] Add a new news fragment into the `CHANGES/` folder * name it `<issue_or_pr_num>.<type>.rst` (e.g. `588.bugfix.rst`) * if you don't have an issue number, change it to the pull request number after creating the PR * `.bugfix`: A bug fix for something the maintainers deemed an improper undesired behavior that got corrected to match pre-agreed expectations. * `.feature`: A new behavior, public APIs. That sort of stuff. * `.deprecation`: A declaration of future API removals and breaking changes in behavior. * `.breaking`: When something public is removed in a breaking way. Could be deprecated in an earlier release. * `.doc`: Notable updates to the documentation structure or build process. * `.packaging`: Notes for downstreams about unobvious side effects and tooling. Changes in the test invocation considerations and runtime assumptions. * `.contrib`: Stuff that affects the contributor experience. e.g. Running tests, building the docs, setting up the development environment. * `.misc`: Changes that are hard to assign to any of the above categories. * Make sure to use full sentences with correct case and punctuation, for example: ```rst Fixed issue with non-ascii contents in doctest text files -- by :user:`contributor-gh-handle`. ``` Co-authored-by: Alexey Stavrov <logioniz@ya.ru>
Configuration menu - View commit details
-
Copy full SHA for e9f3f03 - Browse repository at this point
Copy the full SHA e9f3f03View commit details -
[PR #10551/d067260d backport][3.11] Re-raise OSError as ClientConnect…
…ionError when failing to explicitly close connector socket (#10561) **This is a backport of PR #10551 as merged into master (d067260).** <!-- Thank you for your contribution! --> ## What do these changes do? This is a followup to #10464 to handle the case where `socket.close()` can also raise. This matches the logic we have in aiohappyeyeballs: https://github.com/aio-libs/aiohappyeyeballs/blob/e3bd5bdf44f5d187802de6dcb08d27e1ca6da048/src/aiohappyeyeballs/impl.py#L227 We shouldn't raising `OSError` externally from this method as callers expect a `ClientError` ## Are there changes in behavior for the user? bugfix ## Is it a substantial burden for the maintainers to support this? no ## Related issue number fixes #10506 ## Checklist - [x] I think the code is well written - [x] Unit tests for the changes exist - [x] Documentation reflects the changes - [x] If you provide code modification, please add yourself to `CONTRIBUTORS.txt` * The format is <Name> <Surname>. * Please keep alphabetical order, the file is sorted by names. - [x] Add a new news fragment into the `CHANGES/` folder * name it `<issue_or_pr_num>.<type>.rst` (e.g. `588.bugfix.rst`) * if you don't have an issue number, change it to the pull request number after creating the PR * `.bugfix`: A bug fix for something the maintainers deemed an improper undesired behavior that got corrected to match pre-agreed expectations. * `.feature`: A new behavior, public APIs. That sort of stuff. * `.deprecation`: A declaration of future API removals and breaking changes in behavior. * `.breaking`: When something public is removed in a breaking way. Could be deprecated in an earlier release. * `.doc`: Notable updates to the documentation structure or build process. * `.packaging`: Notes for downstreams about unobvious side effects and tooling. Changes in the test invocation considerations and runtime assumptions. * `.contrib`: Stuff that affects the contributor experience. e.g. Running tests, building the docs, setting up the development environment. * `.misc`: Changes that are hard to assign to any of the above categories. * Make sure to use full sentences with correct case and punctuation, for example: ```rst Fixed issue with non-ascii contents in doctest text files -- by :user:`contributor-gh-handle`. ``` Use the past tense or the present tense a non-imperative mood, referring to what's changed compared to the last released version of this project. Co-authored-by: J. Nick Koston <nick@koston.org>
Configuration menu - View commit details
-
Copy full SHA for 6357c05 - Browse repository at this point
Copy the full SHA 6357c05View commit details -
[PR #10556/9d4e1161 backport][3.11] Break cyclic references at connec…
…tion close when there was a traceback (#10566) **This is a backport of PR #10556 as merged into master (9d4e116).** <!-- Thank you for your contribution! --> ## What do these changes do? Clears the exception on the `DataQueue` and `WebSocketDataQueue` when the connection is closed to break cyclic references. ## Are there changes in behavior for the user? bugfix ## Is it a substantial burden for the maintainers to support this? no ## Related issue number fixes #10535 ## Checklist - [ ] I think the code is well written - [ ] Unit tests for the changes exist - [ ] Documentation reflects the changes - [ ] If you provide code modification, please add yourself to `CONTRIBUTORS.txt` * The format is <Name> <Surname>. * Please keep alphabetical order, the file is sorted by names. - [ ] Add a new news fragment into the `CHANGES/` folder * name it `<issue_or_pr_num>.<type>.rst` (e.g. `588.bugfix.rst`) * if you don't have an issue number, change it to the pull request number after creating the PR * `.bugfix`: A bug fix for something the maintainers deemed an improper undesired behavior that got corrected to match pre-agreed expectations. * `.feature`: A new behavior, public APIs. That sort of stuff. * `.deprecation`: A declaration of future API removals and breaking changes in behavior. * `.breaking`: When something public is removed in a breaking way. Could be deprecated in an earlier release. * `.doc`: Notable updates to the documentation structure or build process. * `.packaging`: Notes for downstreams about unobvious side effects and tooling. Changes in the test invocation considerations and runtime assumptions. * `.contrib`: Stuff that affects the contributor experience. e.g. Running tests, building the docs, setting up the development environment. * `.misc`: Changes that are hard to assign to any of the above categories. * Make sure to use full sentences with correct case and punctuation, for example: ```rst Fixed issue with non-ascii contents in doctest text files -- by :user:`contributor-gh-handle`. ``` Use the past tense or the present tense a non-imperative mood, referring to what's changed compared to the last released version of this project. Co-authored-by: J. Nick Koston <nick@koston.org>
Configuration menu - View commit details
-
Copy full SHA for 771d203 - Browse repository at this point
Copy the full SHA 771d203View commit details -
[PR #10569/dfbf782b backport][3.11] Break cyclic references when ther…
…e is an exception handling a request (#10571) **This is a backport of PR #10569 as merged into master (dfbf782).** <!-- Thank you for your contribution! --> ## What do these changes do? This is a partial fix for #10548 - There is still another case for `SystemRoute`s that needs to be addressed. No reproducer available yet. - There is also another case on the client side on connection refused that still needs to be addressed #10548 (comment) ## Are there changes in behavior for the user? fixes memory leak ## Is it a substantial burden for the maintainers to support this? no Co-authored-by: J. Nick Koston <nick@koston.org>
Configuration menu - View commit details
-
Copy full SHA for 6ae2570 - Browse repository at this point
Copy the full SHA 6ae2570View commit details -
[PR #10564/a59e74b7 backport][3.11] Log offending websocket client ad…
…dress when no protocols overlap (#10575) **This is a backport of PR #10564 as merged into master (a59e74b).** <!-- Thank you for your contribution! --> ## What do these changes do? Logs the remote address of a WebSocket client that has no overlapping protocols ## Are there changes in behavior for the user? Which client has the problem should be a bit more discoverable ## Is it a substantial burden for the maintainers to support this? no ## Related issue number closes #10563 Co-authored-by: J. Nick Koston <nick@koston.org>
Configuration menu - View commit details
-
Copy full SHA for 4005080 - Browse repository at this point
Copy the full SHA 4005080View commit details -
[PR #10542/e1d2d77c backport][3.11] only use
AI_ADDRCONFIG
when sup……ported by getaddrinfo (#10578)
Configuration menu - View commit details
-
Copy full SHA for 9396ef1 - Browse repository at this point
Copy the full SHA 9396ef1View commit details
Commits on Mar 17, 2025
-
[PR #10577/3c60cd22 backport][3.11] Parametrize leak tests (#10580)
**This is a backport of PR #10577 as merged into master (3c60cd2).** Small cleanup to the leak tests #10569 (comment) Co-authored-by: J. Nick Koston <nick@koston.org>
Configuration menu - View commit details
-
Copy full SHA for d40e227 - Browse repository at this point
Copy the full SHA d40e227View commit details -
<img width="466" alt="Screenshot 2025-03-16 at 2 32 10 PM" src="https://github.com/user-attachments/assets/635511fd-6b63-49c7-bb1a-cf514545b604" />
Configuration menu - View commit details
-
Copy full SHA for 1a48a62 - Browse repository at this point
Copy the full SHA 1a48a62View commit details
There are no files selected for viewing