Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-smbprotocol for openSUSE:Factory checked in at 2021-11-21 23:52:09 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-smbprotocol (Old) and /work/SRC/openSUSE:Factory/.python-smbprotocol.new.1895 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-smbprotocol" Sun Nov 21 23:52:09 2021 rev:14 rq:932761 version:1.8.3 Changes: -------- --- /work/SRC/openSUSE:Factory/python-smbprotocol/python-smbprotocol.changes 2021-11-08 17:25:05.612729136 +0100 +++ /work/SRC/openSUSE:Factory/.python-smbprotocol.new.1895/python-smbprotocol.changes 2021-11-21 23:52:38.162165128 +0100 @@ -1,0 +2,7 @@ +Thu Nov 18 21:49:52 UTC 2021 - Martin Hauke <[email protected]> + +- Update to version 1.8.3 + * Set additional_information field in SMB2SetInfoRequest to a + flags field rather than a single enum as per protocol docs. + +------------------------------------------------------------------- Old: ---- python-smbprotocol-1.8.2.tar.gz New: ---- python-smbprotocol-1.8.3.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-smbprotocol.spec ++++++ --- /var/tmp/diff_new_pack.KBDpri/_old 2021-11-21 23:52:38.658163529 +0100 +++ /var/tmp/diff_new_pack.KBDpri/_new 2021-11-21 23:52:38.658163529 +0100 @@ -18,7 +18,7 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} Name: python-smbprotocol -Version: 1.8.2 +Version: 1.8.3 Release: 0 Summary: SMBv2/v3 client for Python 2 and 3 License: MIT ++++++ python-smbprotocol-1.8.2.tar.gz -> python-smbprotocol-1.8.3.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/smbprotocol-1.8.2/CHANGELOG.md new/smbprotocol-1.8.3/CHANGELOG.md --- old/smbprotocol-1.8.2/CHANGELOG.md 2021-11-02 20:40:01.000000000 +0100 +++ new/smbprotocol-1.8.3/CHANGELOG.md 2021-11-18 22:10:25.000000000 +0100 @@ -1,5 +1,10 @@ # Changelog +## 1.8.3 - 2021-11-19 + +* Set `additional_information` field in `SMB2SetInfoRequest` to a flags field rather than a single enum as per protocol docs + + ## 1.8.2 - 2021-11-03 * Add missing `FileAttributes` enum values diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/smbprotocol-1.8.2/setup.py new/smbprotocol-1.8.3/setup.py --- old/smbprotocol-1.8.2/setup.py 2021-11-02 20:40:01.000000000 +0100 +++ new/smbprotocol-1.8.3/setup.py 2021-11-18 22:10:25.000000000 +0100 @@ -18,7 +18,7 @@ setup( name='smbprotocol', - version='1.8.2', + version='1.8.3', packages=['smbclient', 'smbprotocol'], install_requires=[ 'cryptography>=2.0', diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/smbprotocol-1.8.2/smbprotocol/open.py new/smbprotocol-1.8.3/smbprotocol/open.py --- old/smbprotocol-1.8.2/smbprotocol/open.py 2021-11-02 20:40:01.000000000 +0100 +++ new/smbprotocol-1.8.3/smbprotocol/open.py 2021-11-18 22:10:25.000000000 +0100 @@ -1037,9 +1037,9 @@ default=96 )), ('reserved', IntField(size=2)), - ('additional_information', EnumField( + ('additional_information', FlagField( size=4, - enum_type=InfoAdditionalInformation, + flag_type=InfoAdditionalInformation, )), ('file_id', BytesField(size=16)), ('buffer', BytesField(
