forked from pool/python-aiohttp
- Update to 3.11.9:
* Fixed invalid method logging unexpected being logged at exception level on subsequent connections -- by :user:`bdraco`. * Improved performance of parsing headers when using the C parser -- by :user:`bdraco`. - 3.11.8: * Improved performance of creating :class:`aiohttp.ClientResponse` objects when there are no cookies -- by :user:`bdraco`. * Improved performance of creating :class:`aiohttp.ClientResponse` objects -- by :user:`bdraco`. * Improved performances of creating objects during the HTTP request lifecycle -- by :user:`bdraco`. * Improved performance of constructing :class:`aiohttp.web.Response` with headers -- by :user:`bdraco`. * Improved performance of making requests when there are no auto headers to skip -- by :user:`bdraco`. * Downgraded logging of invalid HTTP method exceptions on the first request to debug level -- by :user:`bdraco`. OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-aiohttp?expand=0&rev=140
This commit is contained in:
parent
1eaa070f53
commit
66671b1fef
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:01a8aca4af3da85cea5c90141d23f4b0eee3cbecfd33b029a45a80f28c66c668
|
||||
size 7666482
|
3
aiohttp-3.11.9.tar.gz
Normal file
3
aiohttp-3.11.9.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a9266644064779840feec0e34f10a89b3ff1d2d6b751fe90017abcad1864fa7c
|
||||
size 7668012
|
@ -1,3 +1,25 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 5 11:02:09 UTC 2024 - Daniel Garcia <daniel.garcia@suse.com>
|
||||
|
||||
- Update to 3.11.9:
|
||||
* Fixed invalid method logging unexpected being logged at exception
|
||||
level on subsequent connections -- by :user:`bdraco`.
|
||||
* Improved performance of parsing headers when using the C parser --
|
||||
by :user:`bdraco`.
|
||||
- 3.11.8:
|
||||
* Improved performance of creating :class:`aiohttp.ClientResponse`
|
||||
objects when there are no cookies -- by :user:`bdraco`.
|
||||
* Improved performance of creating :class:`aiohttp.ClientResponse`
|
||||
objects -- by :user:`bdraco`.
|
||||
* Improved performances of creating objects during the HTTP request
|
||||
lifecycle -- by :user:`bdraco`.
|
||||
* Improved performance of constructing :class:`aiohttp.web.Response`
|
||||
with headers -- by :user:`bdraco`.
|
||||
* Improved performance of making requests when there are no auto
|
||||
headers to skip -- by :user:`bdraco`.
|
||||
* Downgraded logging of invalid HTTP method exceptions on the first
|
||||
request to debug level -- by :user:`bdraco`.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Nov 22 11:58:54 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
|
@ -19,7 +19,7 @@
|
||||
%bcond_with docs
|
||||
%{?sle15_python_module_pythons}
|
||||
Name: python-aiohttp
|
||||
Version: 3.11.7
|
||||
Version: 3.11.9
|
||||
Release: 0
|
||||
Summary: Asynchronous HTTP client/server framework
|
||||
License: Apache-2.0
|
||||
@ -36,7 +36,7 @@ Requires: (python-async_timeout >= 4.0 with python-async_timeout < 5)
|
||||
%endif
|
||||
Requires: (python-charset-normalizer >= 2.0 with python-charset-normalizer < 4)
|
||||
Requires: (python-multidict >= 4.5 with python-multidict < 7)
|
||||
Requires: (python-yarl >= 1.13.0 with python-yarl < 2)
|
||||
Requires: (python-yarl >= 1.17.0 with python-yarl < 2)
|
||||
Recommends: python-Brotli
|
||||
Recommends: python-aiodns
|
||||
Recommends: python-cChardet
|
||||
@ -58,7 +58,7 @@ BuildRequires: %{python_module attrs >= 17.3.0}
|
||||
BuildRequires: %{python_module charset-normalizer >= 2.0 with %python-charset-normalizer < 4}
|
||||
BuildRequires: %{python_module frozenlist >= 1.1.1}
|
||||
BuildRequires: %{python_module multidict >= 4.5 with %python-multidict < 7}
|
||||
BuildRequires: %{python_module yarl >= 1.13.0 with %python-yarl < 2}
|
||||
BuildRequires: %{python_module yarl >= 1.17.0 with %python-yarl < 2}
|
||||
# /SECTION
|
||||
# SECTION test requirements
|
||||
BuildRequires: %{python_module aiodns}
|
||||
@ -144,6 +144,7 @@ rm -v tests/autobahn/test_autobahn.py
|
||||
rm -v tests/test_proxy_functional.py
|
||||
# Requires python-pytest-codspeed
|
||||
rm -v tests/test_benchmarks_*
|
||||
|
||||
# randomly fails on xdist splits
|
||||
single_runs="(test_run_app or test_web_runner)"
|
||||
# breaks without threading
|
||||
|
Loading…
x
Reference in New Issue
Block a user