Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-python-socks for 
openSUSE:Factory checked in at 2022-10-08 01:25:23
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-python-socks (Old)
 and      /work/SRC/openSUSE:Factory/.python-python-socks.new.2275 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-python-socks"

Sat Oct  8 01:25:23 2022 rev:3 rq:1008705 version:2.0.3

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-python-socks/python-python-socks.changes  
2022-01-23 12:17:04.831909511 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-python-socks.new.2275/python-python-socks.changes
        2022-10-08 01:25:40.626291870 +0200
@@ -1,0 +2,6 @@
+Thu Oct  6 22:53:00 UTC 2022 - Yogalakshmi Arunachalam <yarunacha...@suse.com>
+
+- Update to 2.0.3: 
+  * Fix anyio exception handling
+
+-------------------------------------------------------------------

Old:
----
  python-socks-2.0.2.tar.gz

New:
----
  python-socks-2.0.3.tar.gz

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

Other differences:
------------------
++++++ python-python-socks.spec ++++++
--- /var/tmp/diff_new_pack.IT7LyW/_old  2022-10-08 01:25:43.710298943 +0200
+++ /var/tmp/diff_new_pack.IT7LyW/_new  2022-10-08 01:25:43.718298961 +0200
@@ -19,7 +19,7 @@
 %define skip_python2 1
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:           python-python-socks
-Version:        2.0.2
+Version:        2.0.3
 Release:        0
 Summary:        Core proxy client functionality for Python
 License:        Apache-2.0

++++++ python-socks-2.0.2.tar.gz -> python-socks-2.0.3.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-socks-2.0.2/PKG-INFO 
new/python-socks-2.0.3/PKG-INFO
--- old/python-socks-2.0.2/PKG-INFO     2022-01-13 09:15:06.000000000 +0100
+++ new/python-socks-2.0.3/PKG-INFO     2022-01-22 11:13:10.000000000 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: python-socks
-Version: 2.0.2
+Version: 2.0.3
 Summary: Core proxy (SOCKS4, SOCKS5, HTTP tunneling) functionality for Python
 Home-page: https://github.com/romis2012/python-socks
 Author: Roman Snegirev
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-socks-2.0.2/python_socks/_version.py 
new/python-socks-2.0.3/python_socks/_version.py
--- old/python-socks-2.0.2/python_socks/_version.py     2022-01-13 
09:11:26.000000000 +0100
+++ new/python-socks-2.0.3/python_socks/_version.py     2022-01-22 
11:08:10.000000000 +0100
@@ -1,2 +1,2 @@
 __title__ = 'python-socks'
-__version__ = '2.0.2'
+__version__ = '2.0.3'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/python-socks-2.0.2/python_socks/async_/anyio/_proxy.py 
new/python-socks-2.0.3/python_socks/async_/anyio/_proxy.py
--- old/python-socks-2.0.2/python_socks/async_/anyio/_proxy.py  2022-01-13 
09:09:30.000000000 +0100
+++ new/python-socks-2.0.3/python_socks/async_/anyio/_proxy.py  2022-01-22 
11:04:25.000000000 +0100
@@ -85,12 +85,12 @@
         except TimeoutError as e:
             await self._close()
             raise ProxyTimeoutError('Proxy connection timed out: 
{}'.format(self._timeout)) from e
-        except (OSError, anyio.BrokenResourceError) as e:
+        except OSError as e:
             await self._close()
             msg = 'Could not connect to proxy {}:{} [{}]'.format(
                 self._proxy_host,
                 self._proxy_port,
-                getattr(e, "strerror", str(e)),
+                e.strerror,
             )
             raise ProxyConnectionError(e.errno, msg) from e
         except Exception:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-socks-2.0.2/python_socks.egg-info/PKG-INFO 
new/python-socks-2.0.3/python_socks.egg-info/PKG-INFO
--- old/python-socks-2.0.2/python_socks.egg-info/PKG-INFO       2022-01-13 
09:15:06.000000000 +0100
+++ new/python-socks-2.0.3/python_socks.egg-info/PKG-INFO       2022-01-22 
11:13:10.000000000 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: python-socks
-Version: 2.0.2
+Version: 2.0.3
 Summary: Core proxy (SOCKS4, SOCKS5, HTTP tunneling) functionality for Python
 Home-page: https://github.com/romis2012/python-socks
 Author: Roman Snegirev

Reply via email to