Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-redfish for openSUSE:Factory checked in at 2026-07-21 22:59:39 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-redfish (Old) and /work/SRC/openSUSE:Factory/.python-redfish.new.24530 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-redfish" Tue Jul 21 22:59:39 2026 rev:27 rq:1366702 version:3.3.6 Changes: -------- --- /work/SRC/openSUSE:Factory/python-redfish/python-redfish.changes 2026-03-16 15:49:51.963627958 +0100 +++ /work/SRC/openSUSE:Factory/.python-redfish.new.24530/python-redfish.changes 2026-07-21 22:59:46.544434524 +0200 @@ -1,0 +2,6 @@ +Sat Jul 18 16:37:37 UTC 2026 - Martin Hauke <[email protected]> + +- Update to version 3.3.6 + * Added urllib3 zstd extra to requirements. + +------------------------------------------------------------------- Old: ---- redfish-3.3.5.tar.gz New: ---- redfish-3.3.6.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-redfish.spec ++++++ --- /var/tmp/diff_new_pack.lkWMkn/_old 2026-07-21 22:59:47.408463968 +0200 +++ /var/tmp/diff_new_pack.lkWMkn/_new 2026-07-21 22:59:47.412464104 +0200 @@ -18,7 +18,7 @@ Name: python-redfish -Version: 3.3.5 +Version: 3.3.6 Release: 0 Summary: Redfish Python Library License: BSD-3-Clause @@ -30,7 +30,7 @@ BuildRequires: fdupes BuildRequires: python-rpm-macros Requires: python-jsonpatch -Requires: python-jsonpath-rw +Requires: python-jsonpath-ng Requires: python-jsonpointer Requires: python-requests Requires: python-requests-toolbelt ++++++ redfish-3.3.5.tar.gz -> redfish-3.3.6.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/python-redfish-library-3.3.5/.travis.yml new/python-redfish-library-3.3.6/.travis.yml --- old/python-redfish-library-3.3.5/.travis.yml 2026-03-13 20:18:08.000000000 +0100 +++ new/python-redfish-library-3.3.6/.travis.yml 2026-07-17 21:25:00.000000000 +0200 @@ -4,8 +4,10 @@ - pip python: - '3.8' -- '3.9' - '3.11' +- '3.12' +- '3.13' +- '3.14' before_install: - pip install -U pip - pip install -U setuptools diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/python-redfish-library-3.3.5/CHANGELOG.md new/python-redfish-library-3.3.6/CHANGELOG.md --- old/python-redfish-library-3.3.5/CHANGELOG.md 2026-03-13 20:18:08.000000000 +0100 +++ new/python-redfish-library-3.3.6/CHANGELOG.md 2026-07-17 21:25:00.000000000 +0200 @@ -1,5 +1,8 @@ # Change Log +## [3.3.6] - 2026-07-17 +- Added urllib3 zstd extra to requirements + ## [3.3.5] - 2026-03-13 - Replaced jsonpath_rw in favor of jsonpath_ng diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/python-redfish-library-3.3.5/requirements.txt new/python-redfish-library-3.3.6/requirements.txt --- old/python-redfish-library-3.3.5/requirements.txt 2026-03-13 20:18:08.000000000 +0100 +++ new/python-redfish-library-3.3.6/requirements.txt 2026-07-17 21:25:00.000000000 +0200 @@ -5,3 +5,4 @@ requests requests-toolbelt requests-unixsocket +urllib3[zstd]>=2.6.0 ; python_version >= '3.9' diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/python-redfish-library-3.3.5/setup.py new/python-redfish-library-3.3.6/setup.py --- old/python-redfish-library-3.3.5/setup.py 2026-03-13 20:18:08.000000000 +0100 +++ new/python-redfish-library-3.3.6/setup.py 2026-07-17 21:25:00.000000000 +0200 @@ -12,7 +12,7 @@ long_description = f.read() setup(name='redfish', - version='3.3.5', + version='3.3.6', description='Redfish Python Library', long_description=long_description, long_description_content_type='text/x-rst', @@ -41,5 +41,8 @@ ], ':python_version >= "3.5"': [ 'jsonpatch' + ], + ':python_version >= "3.9"': [ + 'urllib3[zstd]>=2.6.0' ] }) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/python-redfish-library-3.3.5/src/redfish/__init__.py new/python-redfish-library-3.3.6/src/redfish/__init__.py --- old/python-redfish-library-3.3.5/src/redfish/__init__.py 2026-03-13 20:18:08.000000000 +0100 +++ new/python-redfish-library-3.3.6/src/redfish/__init__.py 2026-07-17 21:25:00.000000000 +0200 @@ -6,7 +6,7 @@ """ Redfish restful library """ __all__ = ['rest', 'ris', 'discovery', 'messages'] -__version__ = "3.3.5" +__version__ = "3.3.6" from redfish.rest.v1 import redfish_client from redfish.rest.v1 import AuthMethod diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/python-redfish-library-3.3.5/tox.ini new/python-redfish-library-3.3.6/tox.ini --- old/python-redfish-library-3.3.5/tox.ini 2026-03-13 20:18:08.000000000 +0100 +++ new/python-redfish-library-3.3.6/tox.ini 2026-07-17 21:25:00.000000000 +0200 @@ -1,5 +1,5 @@ [tox] -envlist = py38,py39,py311 +envlist = py38,py311,py312,py313,py314 [testenv] usedevelop = True @@ -18,4 +18,4 @@ commands = flake8 tests/ src/redfish/discovery [travis] -python = 3.11: py311 +python = 3.14: py314
