Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package python-osc-tiny for openSUSE:Factory
checked in at 2022-07-22 19:21:14
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-osc-tiny (Old)
and /work/SRC/openSUSE:Factory/.python-osc-tiny.new.21925 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-osc-tiny"
Fri Jul 22 19:21:14 2022 rev:17 rq:990578 version:0.6.6
Changes:
--------
--- /work/SRC/openSUSE:Factory/python-osc-tiny/python-osc-tiny.changes
2022-07-21 11:33:37.402961354 +0200
+++
/work/SRC/openSUSE:Factory/.python-osc-tiny.new.21925/python-osc-tiny.changes
2022-07-22 19:21:25.112678787 +0200
@@ -1,0 +2,6 @@
+Thu Jul 21 14:15:00 UTC 2022 - Andreas Hasenkopf <[email protected]>
+
+- Release 0.6.6
+ * Workaround for credential mangers of `osc` having different return types
+
+-------------------------------------------------------------------
Old:
----
osc-tiny-0.6.5.tar.gz
New:
----
osc-tiny-0.6.6.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-osc-tiny.spec ++++++
--- /var/tmp/diff_new_pack.rQ4X2r/_old 2022-07-22 19:21:25.496679379 +0200
+++ /var/tmp/diff_new_pack.rQ4X2r/_new 2022-07-22 19:21:25.500679386 +0200
@@ -19,7 +19,7 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
%define skip_python2 1
Name: python-osc-tiny
-Version: 0.6.5
+Version: 0.6.6
Release: 0
Summary: Client API for openSUSE BuildService
License: MIT
++++++ osc-tiny-0.6.5.tar.gz -> osc-tiny-0.6.6.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/osc-tiny-0.6.5/PKG-INFO new/osc-tiny-0.6.6/PKG-INFO
--- old/osc-tiny-0.6.5/PKG-INFO 2022-07-20 10:38:48.407163100 +0200
+++ new/osc-tiny-0.6.6/PKG-INFO 2022-07-21 16:13:15.865302800 +0200
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: osc-tiny
-Version: 0.6.5
+Version: 0.6.6
Summary: Client API for openSUSE BuildService
Home-page: http://github.com/crazyscientist/osc-tiny
Download-URL: http://github.com/crazyscientist/osc-tiny/tarball/master
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/osc-tiny-0.6.5/osc_tiny.egg-info/PKG-INFO
new/osc-tiny-0.6.6/osc_tiny.egg-info/PKG-INFO
--- old/osc-tiny-0.6.5/osc_tiny.egg-info/PKG-INFO 2022-07-20
10:38:48.000000000 +0200
+++ new/osc-tiny-0.6.6/osc_tiny.egg-info/PKG-INFO 2022-07-21
16:13:15.000000000 +0200
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: osc-tiny
-Version: 0.6.5
+Version: 0.6.6
Summary: Client API for openSUSE BuildService
Home-page: http://github.com/crazyscientist/osc-tiny
Download-URL: http://github.com/crazyscientist/osc-tiny/tarball/master
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/osc-tiny-0.6.5/osctiny/__init__.py
new/osc-tiny-0.6.6/osctiny/__init__.py
--- old/osc-tiny-0.6.5/osctiny/__init__.py 2022-07-20 10:38:38.000000000
+0200
+++ new/osc-tiny-0.6.6/osctiny/__init__.py 2022-07-21 16:13:03.000000000
+0200
@@ -6,4 +6,4 @@
__all__ = ['Osc', 'bs_requests', 'buildresults', 'comments', 'packages',
'projects', 'search', 'users']
-__version__ = "0.6.5"
+__version__ = "0.6.6"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/osc-tiny-0.6.5/osctiny/utils/conf.py
new/osc-tiny-0.6.6/osctiny/utils/conf.py
--- old/osc-tiny-0.6.5/osctiny/utils/conf.py 2022-07-20 10:38:38.000000000
+0200
+++ new/osc-tiny-0.6.6/osctiny/utils/conf.py 2022-07-21 16:13:03.000000000
+0200
@@ -114,7 +114,9 @@
# and now fetch the options for that particular url
api_config = _conf.get_apiurl_api_host_options(url)
username = api_config["user"]
- password = api_config["pass"]
+ # Note: `osc` can return a wrapper object instead of a plain password:
+ # https://github.com/openSUSE/osc/issues/1073
+ password = str(api_config["pass"])
sshkey = Path(api_config["sshkey"]) if api_config.get("sshkey", None)
else None
except (KeyError, ConfigError, ConfigMissingApiurl) as error:
if isinstance(error, ConfigError):
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/osc-tiny-0.6.5/setup.py new/osc-tiny-0.6.6/setup.py
--- old/osc-tiny-0.6.5/setup.py 2022-07-20 10:38:38.000000000 +0200
+++ new/osc-tiny-0.6.6/setup.py 2022-07-21 16:13:03.000000000 +0200
@@ -26,7 +26,7 @@
setup(
name='osc-tiny',
- version='0.6.5',
+ version='0.6.6',
description='Client API for openSUSE BuildService',
long_description=long_description,
long_description_content_type="text/markdown",