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 2025-07-02 12:10:27 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-osc-tiny (Old) and /work/SRC/openSUSE:Factory/.python-osc-tiny.new.7067 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-osc-tiny" Wed Jul 2 12:10:27 2025 rev:40 rq:1289531 version:0.10.8 Changes: -------- --- /work/SRC/openSUSE:Factory/python-osc-tiny/python-osc-tiny.changes 2025-06-20 16:55:09.314528015 +0200 +++ /work/SRC/openSUSE:Factory/.python-osc-tiny.new.7067/python-osc-tiny.changes 2025-07-02 12:13:35.776946118 +0200 @@ -1,0 +2,6 @@ +Tue Jul 01 09:24:42 UTC 2025 - maintenance-obs-robot <maintenance-automation-t...@suse.de> + +- Release 0.10.8 + - Fix pipeline mistake and add python 3.13 & 3.14 to the CI + +------------------------------------------------------------------- Old: ---- osc_tiny-0.10.7.tar.gz New: ---- osc_tiny-0.10.8.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-osc-tiny.spec ++++++ --- /var/tmp/diff_new_pack.uCEjEV/_old 2025-07-02 12:13:36.404972202 +0200 +++ /var/tmp/diff_new_pack.uCEjEV/_new 2025-07-02 12:13:36.408972368 +0200 @@ -19,7 +19,7 @@ %define skip_python2 1 %{?sle15allpythons} Name: python-osc-tiny -Version: 0.10.7 +Version: 0.10.8 Release: 0 Summary: Client API for openSUSE BuildService License: MIT ++++++ osc_tiny-0.10.7.tar.gz -> osc_tiny-0.10.8.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/osc_tiny-0.10.7/PKG-INFO new/osc_tiny-0.10.8/PKG-INFO --- old/osc_tiny-0.10.7/PKG-INFO 2025-06-20 14:07:56.387409000 +0200 +++ new/osc_tiny-0.10.8/PKG-INFO 2025-07-01 13:25:51.954702600 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 2.4 Name: osc-tiny -Version: 0.10.7 +Version: 0.10.8 Summary: Client API for openSUSE BuildService Home-page: https://github.com/SUSE/osc-tiny Author: Andreas Hasenkopf diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/osc_tiny-0.10.7/osc_tiny.egg-info/PKG-INFO new/osc_tiny-0.10.8/osc_tiny.egg-info/PKG-INFO --- old/osc_tiny-0.10.7/osc_tiny.egg-info/PKG-INFO 2025-06-20 14:07:56.000000000 +0200 +++ new/osc_tiny-0.10.8/osc_tiny.egg-info/PKG-INFO 2025-07-01 13:25:51.000000000 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 2.4 Name: osc-tiny -Version: 0.10.7 +Version: 0.10.8 Summary: Client API for openSUSE BuildService Home-page: https://github.com/SUSE/osc-tiny Author: Andreas Hasenkopf diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/osc_tiny-0.10.7/osctiny/__init__.py new/osc_tiny-0.10.8/osctiny/__init__.py --- old/osc_tiny-0.10.7/osctiny/__init__.py 2025-06-20 14:07:52.000000000 +0200 +++ new/osc_tiny-0.10.8/osctiny/__init__.py 2025-07-01 13:25:45.000000000 +0200 @@ -6,4 +6,4 @@ __all__ = ['Osc', 'bs_requests', 'buildresults', 'comments', 'packages', 'projects', 'search', 'users'] -__version__ = "0.10.7" +__version__ = "0.10.8" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/osc_tiny-0.10.7/osctiny/tests/test_utils.py new/osc_tiny-0.10.8/osctiny/tests/test_utils.py --- old/osc_tiny-0.10.7/osctiny/tests/test_utils.py 2025-06-20 14:07:52.000000000 +0200 +++ new/osc_tiny-0.10.8/osctiny/tests/test_utils.py 2025-07-01 13:25:45.000000000 +0200 @@ -642,7 +642,14 @@ jar = LWPCookieJar(filename=str(cookie_path)) jar.load() - self.assertEqual(cookie_str, CookieManager.get_cookie(jar=jar)) + result = CookieManager.get_cookie(jar=jar) + + # Use regex to handle both quoted and unquoted domain formats + # Python 3.13.4+ changed how domains are serialized (no quotes) + expected_pattern = re.escape(cookie_str).replace( + r'domain="\.suse\.de"', r'domain="?\.suse\.de"?' + ) + self.assertRegex(result, expected_pattern) class TestSession(TestCase): diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/osc_tiny-0.10.7/setup.py new/osc_tiny-0.10.8/setup.py --- old/osc_tiny-0.10.7/setup.py 2025-06-20 14:07:52.000000000 +0200 +++ new/osc_tiny-0.10.8/setup.py 2025-07-01 13:25:45.000000000 +0200 @@ -26,7 +26,7 @@ setup( name='osc-tiny', - version='0.10.7', + version='0.10.8', description='Client API for openSUSE BuildService', long_description=long_description, long_description_content_type="text/markdown",