Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-aiohttp for openSUSE:Factory 
checked in at 2022-10-10 18:43:52
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-aiohttp (Old)
 and      /work/SRC/openSUSE:Factory/.python-aiohttp.new.2275 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-aiohttp"

Mon Oct 10 18:43:52 2022 rev:28 rq:1007998 version:3.8.3

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-aiohttp/python-aiohttp.changes    
2022-03-31 17:18:44.573235401 +0200
+++ /work/SRC/openSUSE:Factory/.python-aiohttp.new.2275/python-aiohttp.changes  
2022-10-10 18:44:09.874817260 +0200
@@ -1,0 +2,27 @@
+Tue Oct  4 20:31:56 UTC 2022 - Dirk M??ller <dmuel...@suse.com>
+
+- skip more tests 
+
+-------------------------------------------------------------------
+Sat Sep 24 11:07:58 UTC 2022 - Dirk M??ller <dmuel...@suse.com>
+
+- update to 3.8.3:
+  * Increased the upper boundary of the :doc:`multidict:index` dependency
+    to allow for the version 6 -- by :user:`hugovk`.
+  * Added support for registering :rfc:`OPTIONS <9110#OPTIONS>`
+    HTTP method handlers via :py:class:`~aiohttp.web.RouteTableDef`.
+  * Started supporting :rfc:`authority-form <9112#authority-form>` and
+    :rfc:`absolute-form <9112#absolute-form>` URLs on the server-side.
+  * Fixed Python 3.11 incompatibilities by using Cython 0.29.25.
+  * Extended the ``sock`` argument typing declaration of the
+    :py:func:`~aiohttp.web.run_app` function as optionally
+    accepting iterables.
+  * Fixed a regression where :py:exc:`~asyncio.CancelledError`
+    occurs on client disconnection.
+  * Started exporting :py:class:`~aiohttp.web.PrefixedSubAppResource`
+    under :py:mod:`aiohttp.web` -- by :user:`Dreamsorcerer`.
+  * Dropped the :class:`object` type possibility from
+    the :py:attr:`aiohttp.ClientSession.timeout`
+    property return type declaration.
+
+-------------------------------------------------------------------

Old:
----
  aiohttp-3.8.1.tar.gz

New:
----
  aiohttp-3.8.3.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ python-aiohttp.spec ++++++
--- /var/tmp/diff_new_pack.VtPjjz/_old  2022-10-10 18:44:10.494818594 +0200
+++ /var/tmp/diff_new_pack.VtPjjz/_new  2022-10-10 18:44:10.498818603 +0200
@@ -21,7 +21,7 @@
 # requires some unavailable modules
 %bcond_with docs
 Name:           python-aiohttp
-Version:        3.8.1
+Version:        3.8.3
 Release:        0
 Summary:        Asynchronous HTTP client/server framework
 License:        Apache-2.0
@@ -125,15 +125,19 @@
 }
 
 %check
-donttest="test_aiohttp_request_coroutine or test_mark_formdata_as_processed or 
test_aiohttp_plugin_async"
+donttest="test_aiohttp_request_coroutine or test_mark_formdata_as_processed or 
test_aiohttp_plugin_async or test_secure_https_proxy_absolute_path"
 # no name resolution
 donttest+=" or test_client_session_timeout_zero or 
test_requote_redirect_url_default"
 # flaky
 donttest+=" or test_https_proxy_unsupported_tls_in_tls"
+# not running under pytest ?!
+donttest+=" or test_no_warnings"
 %if 0%{?python3_version_nodots} == 36
 donttest+=" or test_read_boundary_with_incomplete_chunk"
 %endif
-%pytest_arch --ignore ./aiohttp -rsEf -k "not ($donttest)"
+# skip functional tests
+# rm -v tests/test_proxy_functional.py
+%pytest_arch tests -rsEf -k "not ($donttest)"
 
 %files %{python_files}
 %license LICENSE.txt

++++++ aiohttp-3.8.1.tar.gz -> aiohttp-3.8.3.tar.gz ++++++
/work/SRC/openSUSE:Factory/python-aiohttp/aiohttp-3.8.1.tar.gz 
/work/SRC/openSUSE:Factory/.python-aiohttp.new.2275/aiohttp-3.8.3.tar.gz 
differ: char 5, line 1

++++++ ignore-pytest-deprecationwarning.patch ++++++
--- /var/tmp/diff_new_pack.VtPjjz/_old  2022-10-10 18:44:10.546818706 +0200
+++ /var/tmp/diff_new_pack.VtPjjz/_new  2022-10-10 18:44:10.550818715 +0200
@@ -1,11 +1,11 @@
-Index: aiohttp-3.8.1/setup.cfg
+Index: aiohttp-3.8.3/setup.cfg
 ===================================================================
---- aiohttp-3.8.1.orig/setup.cfg
-+++ aiohttp-3.8.1/setup.cfg
-@@ -119,6 +119,7 @@ filterwarnings =
-       ignore:Exception ignored in. <function ClientSession.__del__ at 
0x.:pytest.PytestUnraisableExceptionWarning:_pytest.unraisableexception
-       ignore:Exception ignored in. <_io.FileIO 
.closed.>:pytest.PytestUnraisableExceptionWarning:_pytest.unraisableexception
-       ignore:The loop argument is deprecated since Python 3.8, and scheduled 
for removal in Python 3.10.:DeprecationWarning:asyncio
+--- aiohttp-3.8.3.orig/setup.cfg
++++ aiohttp-3.8.3/setup.cfg
+@@ -125,6 +125,7 @@ filterwarnings =
+       ignore:Creating a LegacyVersion has been deprecated and will be removed 
in the next major release:DeprecationWarning::
+       ignore:module 'sre_constants' is 
deprecated:DeprecationWarning:pkg_resources._vendor.pyparsing
+       ignore:path is deprecated. Use files.. instead. Refer to 
https.//importlib-resources.readthedocs.io/en/latest/using.html#migrating-from-legacy
 for migration advice.:DeprecationWarning:certifi.core
 +      ignore:Passing None has been deprecated:pytest.PytestDeprecationWarning
  junit_suite_name = aiohttp_test_suite
  norecursedirs = dist docs build .tox .eggs

Reply via email to