forked from pool/python-aiohttp
(bsc#1233446, CVE-2024-52303, bsc#1233447, CVE-2024-52304)
- Authentication provided by a redirect now takes precedence over
provided auth when making requests with the client -- by
:user:`PLPeeters`.
- Fixed :py:meth:`WebSocketResponse.close()
<aiohttp.web.WebSocketResponse.close>` to discard non-close
messages within its timeout window after sending close -- by
:user:`lenard-mosys`.
- Fixed a deadlock that could occur while attempting to get a new
connection slot after a timeout -- by :user:`bdraco`.
- Fixed the WebSocket flow control calculation undercounting with
multi-byte data -- by :user:`bdraco`.
- Fixed incorrect parsing of chunk extensions with the pure Python
parser -- by :user:`bdraco`.
- Fixed system routes polluting the middleware cache -- by
:user:`bdraco`.
- Improved performance of the connector when a connection can be
reused -- by :user:`bdraco`.
- Improved performance of the client request lifecycle when there
are no cookies -- by :user:`bdraco`.
- Improved performance of sending client requests when the writer
can finish synchronously -- by :user:`bdraco`.
- Improved performance of serializing HTTP headers -- by
:user:`bdraco`.
- Passing enable_cleanup_closed to :py:class:`aiohttp.TCPConnector`
is now ignored on Python 3.12.7+ and 3.13.1+ since the underlying
bug that caused asyncio to leak SSL connections has been fixed
upstream -- by :user:`bdraco`.
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-aiohttp?expand=0&rev=138
25 lines
1.0 KiB
Diff
25 lines
1.0 KiB
Diff
Index: aiohttp-3.10.11/tests/test_imports.py
|
|
===================================================================
|
|
--- aiohttp-3.10.11.orig/tests/test_imports.py
|
|
+++ aiohttp-3.10.11/tests/test_imports.py
|
|
@@ -36,9 +36,9 @@ _TARGET_TIMINGS_BY_PYTHON_VERSION = {
|
|
"3.12": (
|
|
# 3.12+ is expected to be a bit slower due to performance trade-offs,
|
|
# and even slower under pytest-xdist, especially in CI
|
|
- _XDIST_WORKER_COUNT * 100 * (1 if _IS_CI_ENV else 1.53)
|
|
+ _XDIST_WORKER_COUNT * 250 * (1 if _IS_CI_ENV else 1.53)
|
|
if _IS_XDIST_RUN
|
|
- else 265
|
|
+ else 500
|
|
),
|
|
}
|
|
_TARGET_TIMINGS_BY_PYTHON_VERSION["3.13"] = _TARGET_TIMINGS_BY_PYTHON_VERSION["3.12"]
|
|
@@ -78,6 +78,6 @@ def test_import_time(pytester: pytest.Py
|
|
os.environ["PYTHONPATH"] = old_path
|
|
|
|
expected_time = _TARGET_TIMINGS_BY_PYTHON_VERSION.get(
|
|
- f"{sys.version_info.major}.{sys.version_info.minor}", 200
|
|
+ f"{sys.version_info.major}.{sys.version_info.minor}", 500
|
|
)
|
|
assert best_time_ms < expected_time
|