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-26 11:30:19 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-redfish (Old) and /work/SRC/openSUSE:Factory/.python-redfish.new.2004 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-redfish" Sun Jul 26 11:30:19 2026 rev:28 rq:1367787 version:3.3.7 Changes: -------- --- /work/SRC/openSUSE:Factory/python-redfish/python-redfish.changes 2026-07-21 22:59:46.544434524 +0200 +++ /work/SRC/openSUSE:Factory/.python-redfish.new.2004/python-redfish.changes 2026-07-26 11:32:55.259904716 +0200 @@ -1,0 +2,6 @@ +Sat Jul 25 08:23:57 UTC 2026 - Martin Hauke <[email protected]> + +- Update to version 3.3.7 + * Added missing optional request body for DELETE operations. + +------------------------------------------------------------------- Old: ---- redfish-3.3.6.tar.gz New: ---- redfish-3.3.7.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-redfish.spec ++++++ --- /var/tmp/diff_new_pack.14ETUB/_old 2026-07-26 11:32:55.703920014 +0200 +++ /var/tmp/diff_new_pack.14ETUB/_new 2026-07-26 11:32:55.703920014 +0200 @@ -18,7 +18,7 @@ Name: python-redfish -Version: 3.3.6 +Version: 3.3.7 Release: 0 Summary: Redfish Python Library License: BSD-3-Clause ++++++ redfish-3.3.6.tar.gz -> redfish-3.3.7.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/python-redfish-library-3.3.6/CHANGELOG.md new/python-redfish-library-3.3.7/CHANGELOG.md --- old/python-redfish-library-3.3.6/CHANGELOG.md 2026-07-17 21:25:00.000000000 +0200 +++ new/python-redfish-library-3.3.7/CHANGELOG.md 2026-07-24 21:19:35.000000000 +0200 @@ -1,5 +1,8 @@ # Change Log +## [3.3.7] - 2026-07-24 +- Added missing optional request body for DELETE operations + ## [3.3.6] - 2026-07-17 - Added urllib3 zstd extra to requirements diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/python-redfish-library-3.3.6/setup.py new/python-redfish-library-3.3.7/setup.py --- old/python-redfish-library-3.3.6/setup.py 2026-07-17 21:25:00.000000000 +0200 +++ new/python-redfish-library-3.3.7/setup.py 2026-07-24 21:19:35.000000000 +0200 @@ -12,7 +12,7 @@ long_description = f.read() setup(name='redfish', - version='3.3.6', + version='3.3.7', description='Redfish Python Library', long_description=long_description, long_description_content_type='text/x-rst', diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/python-redfish-library-3.3.6/src/redfish/__init__.py new/python-redfish-library-3.3.7/src/redfish/__init__.py --- old/python-redfish-library-3.3.6/src/redfish/__init__.py 2026-07-17 21:25:00.000000000 +0200 +++ new/python-redfish-library-3.3.7/src/redfish/__init__.py 2026-07-24 21:19:35.000000000 +0200 @@ -6,7 +6,7 @@ """ Redfish restful library """ __all__ = ['rest', 'ris', 'discovery', 'messages'] -__version__ = "3.3.6" +__version__ = "3.3.7" 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.6/src/redfish/rest/v1.py new/python-redfish-library-3.3.7/src/redfish/rest/v1.py --- old/python-redfish-library-3.3.6/src/redfish/rest/v1.py 2026-07-17 21:25:00.000000000 +0200 +++ new/python-redfish-library-3.3.7/src/redfish/rest/v1.py 2026-07-24 21:19:35.000000000 +0200 @@ -746,7 +746,7 @@ return self._rest_request(path, method='PATCH', args=args, body=body, headers=headers, timeout=timeout, max_retry=max_retry) - def delete(self, path, args=None, headers=None, timeout=None, max_retry=None): + def delete(self, path, args=None, headers=None, timeout=None, max_retry=None, body=None): """Perform a DELETE request :param path: The URI to access @@ -759,10 +759,12 @@ :type timeout: int, optional :param max_retry: Number of times a request will retry after a timeout for this specific request :type max_retry: int, optional + :param body: The request body to provide; use a dict for a JSON body, list for multipart forms, bytes for an octet stream, or str for an unstructured request + :type body: dict or list or bytes or str, optional :returns: returns a rest request with method 'Delete' """ - return self._rest_request(path, method='DELETE', args=args, + return self._rest_request(path, method='DELETE', args=args, body=body, headers=headers, timeout=timeout, max_retry=max_retry) def _get_req_headers(self, headers=None):
