Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-uamqp for openSUSE:Factory checked in at 2022-03-31 17:18:53 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-uamqp (Old) and /work/SRC/openSUSE:Factory/.python-uamqp.new.1900 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "python-uamqp" Thu Mar 31 17:18:53 2022 rev:16 rq:966201 version:1.5.3 Changes: -------- --- /work/SRC/openSUSE:Factory/python-uamqp/python-uamqp.changes 2022-01-13 23:21:46.500060577 +0100 +++ /work/SRC/openSUSE:Factory/.python-uamqp.new.1900/python-uamqp.changes 2022-03-31 17:19:29.752725628 +0200 @@ -1,0 +2,8 @@ +Thu Mar 31 10:32:01 UTC 2022 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com> + +- New upstream release + + Version 1.5.3 + + For detailed information about changes see the + HISTORY.rst file provided with this package + +------------------------------------------------------------------- Old: ---- uamqp-1.5.1.tar.gz New: ---- uamqp-1.5.3.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-uamqp.spec ++++++ --- /var/tmp/diff_new_pack.pl5NGv/_old 2022-03-31 17:19:30.400718237 +0200 +++ /var/tmp/diff_new_pack.pl5NGv/_new 2022-03-31 17:19:30.404718191 +0200 @@ -21,7 +21,7 @@ %define skip_python2 1 %endif Name: python-uamqp -Version: 1.5.1 +Version: 1.5.3 Release: 0 Summary: AMQP 10 Client Library for Python License: MIT ++++++ uamqp-1.5.1.tar.gz -> uamqp-1.5.3.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/uamqp-1.5.1/HISTORY.rst new/uamqp-1.5.3/HISTORY.rst --- old/uamqp-1.5.1/HISTORY.rst 2022-01-12 18:37:51.000000000 +0100 +++ new/uamqp-1.5.3/HISTORY.rst 2022-03-23 21:53:05.000000000 +0100 @@ -3,6 +3,17 @@ Release History =============== +1.5.3 (2022-03-23) ++++++++++++++++++++ + +- Updated OpenSSL dependency to 1.1.1n for wheels of manylinux and macOS. + + +1.5.2 (2022-03-15) ++++++++++++++++++++ + +- Fixed bug that resulted in an error when deepcopying BatchMessage objects (azure-sdk-for-python issue #22529). + 1.5.1 (2022-01-12) +++++++++++++++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/uamqp-1.5.1/PKG-INFO new/uamqp-1.5.3/PKG-INFO --- old/uamqp-1.5.1/PKG-INFO 2022-01-12 18:38:16.000000000 +0100 +++ new/uamqp-1.5.3/PKG-INFO 2022-03-23 21:53:35.000000000 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 1.2 Name: uamqp -Version: 1.5.1 +Version: 1.5.3 Summary: AMQP 1.0 Client Library for Python Home-page: https://github.com/Azure/azure-uamqp-python Author: Microsoft Corporation @@ -142,6 +142,17 @@ Release History =============== + 1.5.3 (2022-03-23) + +++++++++++++++++++ + + - Updated OpenSSL dependency to 1.1.1n for wheels of manylinux and macOS. + + + 1.5.2 (2022-03-15) + +++++++++++++++++++ + + - Fixed bug that resulted in an error when deepcopying BatchMessage objects (azure-sdk-for-python issue #22529). + 1.5.1 (2022-01-12) +++++++++++++++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/uamqp-1.5.1/setup.py new/uamqp-1.5.3/setup.py --- old/uamqp-1.5.1/setup.py 2022-01-12 18:37:51.000000000 +0100 +++ new/uamqp-1.5.3/setup.py 2022-03-23 21:53:05.000000000 +0100 @@ -93,9 +93,9 @@ def get_generator_flags(): flags = ["-G"] if is_win: - flags.append("\"Visual Studio 15 2017\"") + flags.append("\"Visual Studio 16 2019\"") flags.append("-A") - flags.append("x64" if is_x64 else "Win32") + flags.append("ARM64" if platform.machine() == "ARM64" else "x64" if is_x64 else "Win32") else: flags.append("\"Unix Makefiles\"") return " ".join(flags) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/uamqp-1.5.1/uamqp/__init__.py new/uamqp-1.5.3/uamqp/__init__.py --- old/uamqp-1.5.1/uamqp/__init__.py 2022-01-12 18:37:51.000000000 +0100 +++ new/uamqp-1.5.3/uamqp/__init__.py 2022-03-23 21:53:05.000000000 +0100 @@ -35,7 +35,7 @@ pass # Async not supported. -__version__ = "1.5.1" +__version__ = "1.5.3" _logger = logging.getLogger(__name__) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/uamqp-1.5.1/uamqp/message.py new/uamqp-1.5.3/uamqp/message.py --- old/uamqp-1.5.1/uamqp/message.py 2022-01-12 18:37:51.000000000 +0100 +++ new/uamqp-1.5.3/uamqp/message.py 2022-03-23 21:53:05.000000000 +0100 @@ -646,6 +646,13 @@ self._header = header self._need_further_parse = False + def __getstate__(self): + state = self.__dict__.copy() + return state + + def __setstate__(self, state): + self.__dict__.update(state) + def _create_batch_message(self): """Create a ~uamqp.message.Message for a value supplied by the data generator. Applies all properties and annotations to the message. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/uamqp-1.5.1/uamqp.egg-info/PKG-INFO new/uamqp-1.5.3/uamqp.egg-info/PKG-INFO --- old/uamqp-1.5.1/uamqp.egg-info/PKG-INFO 2022-01-12 18:38:15.000000000 +0100 +++ new/uamqp-1.5.3/uamqp.egg-info/PKG-INFO 2022-03-23 21:53:34.000000000 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 1.2 Name: uamqp -Version: 1.5.1 +Version: 1.5.3 Summary: AMQP 1.0 Client Library for Python Home-page: https://github.com/Azure/azure-uamqp-python Author: Microsoft Corporation @@ -142,6 +142,17 @@ Release History =============== + 1.5.3 (2022-03-23) + +++++++++++++++++++ + + - Updated OpenSSL dependency to 1.1.1n for wheels of manylinux and macOS. + + + 1.5.2 (2022-03-15) + +++++++++++++++++++ + + - Fixed bug that resulted in an error when deepcopying BatchMessage objects (azure-sdk-for-python issue #22529). + 1.5.1 (2022-01-12) +++++++++++++++++++
participants (1)
-
Source-Sync