Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-amqpstorm for openSUSE:Factory checked in at 2022-05-09 18:44:01 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-amqpstorm (Old) and /work/SRC/openSUSE:Factory/.python-amqpstorm.new.1538 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-amqpstorm" Mon May 9 18:44:01 2022 rev:13 rq:975699 version:2.10.4 Changes: -------- --- /work/SRC/openSUSE:Factory/python-amqpstorm/python-amqpstorm.changes 2021-04-21 20:59:40.282227044 +0200 +++ /work/SRC/openSUSE:Factory/.python-amqpstorm.new.1538/python-amqpstorm.changes 2022-05-09 18:44:29.052234268 +0200 @@ -1,0 +2,16 @@ +Mon May 9 04:55:21 UTC 2022 - Mark??ta Machov?? <mmach...@suse.com> + +- Update to 2.10.4 + * Fixed a potential deadlock when opening a channel with a broken connection [#97] + * Added support for custom Message implementations + * Added Pagination and Filtering support to Management list calls + * Updated to use pytest framework instead of nose for testing. + * Fixed bug with UriConnection not handling amqps:// properly. + * Fixed bad socket fd causing high cpu usage [#110] +- Get new pamqp3.patch from https://github.com/eandersson/amqpstorm/pull/95, + which should be in v3 (which is somehow not tagged yet) + * rebased it to the new codestream +- Do not require mock + * mock.patch + +------------------------------------------------------------------- @@ -4 +20 @@ -- Upadte to 2.8.4 +- Update to 2.8.4 Old: ---- AMQPStorm-2.8.4.tar.gz New: ---- AMQPStorm-2.10.4.tar.gz mock.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-amqpstorm.spec ++++++ --- /var/tmp/diff_new_pack.Za9E8r/_old 2022-05-09 18:44:29.660234981 +0200 +++ /var/tmp/diff_new_pack.Za9E8r/_new 2022-05-09 18:44:29.664234986 +0200 @@ -1,7 +1,7 @@ # # spec file for package python-amqpstorm # -# Copyright (c) 2021 SUSE LLC +# Copyright (c) 2022 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -18,14 +18,14 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} Name: python-amqpstorm -Version: 2.8.4 +Version: 2.10.4 Release: 0 Summary: Thread-safe Python RabbitMQ Client & Management library License: MIT URL: https://github.com/eandersson/amqpstorm Source: https://files.pythonhosted.org/packages/source/A/AMQPStorm/AMQPStorm-%{version}.tar.gz Patch0: pamqp3.patch -BuildRequires: %{python_module mock} +Patch1: mock.patch BuildRequires: %{python_module pamqp >= 3.0} BuildRequires: %{python_module pytest} BuildRequires: %{python_module requests} @@ -50,7 +50,6 @@ %prep %setup -q -n AMQPStorm-%{version} %autopatch -p1 -sed -i -e "s/'pamqp>=2.0.0,<3.0'/'pamqp>=3.0'/" setup.py %build export LANG="en_US.UTF8" @@ -69,7 +68,7 @@ %files %{python_files} %license LICENSE -%doc README.rst examples +%doc README.rst %{python_sitelib}/* %changelog ++++++ AMQPStorm-2.8.4.tar.gz -> AMQPStorm-2.10.4.tar.gz ++++++ ++++ 18926 lines of diff (skipped) ++++++ mock.patch ++++++ Index: AMQPStorm-2.10.4/amqpstorm/tests/unit/basic/test_basic.py =================================================================== --- AMQPStorm-2.10.4.orig/amqpstorm/tests/unit/basic/test_basic.py +++ AMQPStorm-2.10.4/amqpstorm/tests/unit/basic/test_basic.py @@ -3,7 +3,7 @@ import random import string import sys -import mock +from unittest import mock from pamqp import commands from pamqp.body import ContentBody from pamqp.header import ContentHeader Index: AMQPStorm-2.10.4/amqpstorm/tests/unit/channel/test_channel.py =================================================================== --- AMQPStorm-2.10.4.orig/amqpstorm/tests/unit/channel/test_channel.py +++ AMQPStorm-2.10.4/amqpstorm/tests/unit/channel/test_channel.py @@ -1,4 +1,4 @@ -import mock +from unittest import mock from pamqp import commands from amqpstorm import Channel Index: AMQPStorm-2.10.4/amqpstorm/tests/unit/channel/test_channel_exception.py =================================================================== --- AMQPStorm-2.10.4.orig/amqpstorm/tests/unit/channel/test_channel_exception.py +++ AMQPStorm-2.10.4/amqpstorm/tests/unit/channel/test_channel_exception.py @@ -1,4 +1,4 @@ -import mock +from unittest import mock from pamqp import commands import amqpstorm Index: AMQPStorm-2.10.4/amqpstorm/tests/unit/channel/test_channel_frame.py =================================================================== --- AMQPStorm-2.10.4.orig/amqpstorm/tests/unit/channel/test_channel_frame.py +++ AMQPStorm-2.10.4/amqpstorm/tests/unit/channel/test_channel_frame.py @@ -1,4 +1,4 @@ -import mock +from unittest import mock from pamqp.header import ContentHeader from pamqp import commands from pamqp.body import ContentBody Index: AMQPStorm-2.10.4/amqpstorm/tests/unit/channel/test_channel_message_handling.py =================================================================== --- AMQPStorm-2.10.4.orig/amqpstorm/tests/unit/channel/test_channel_message_handling.py +++ AMQPStorm-2.10.4/amqpstorm/tests/unit/channel/test_channel_message_handling.py @@ -1,6 +1,6 @@ import threading -import mock +from unittest import mock from pamqp.header import ContentHeader from pamqp import commands from pamqp.body import ContentBody Index: AMQPStorm-2.10.4/amqpstorm/tests/unit/connection/test_connection.py =================================================================== --- AMQPStorm-2.10.4.orig/amqpstorm/tests/unit/connection/test_connection.py +++ AMQPStorm-2.10.4/amqpstorm/tests/unit/connection/test_connection.py @@ -1,7 +1,7 @@ import socket import threading -import mock +from unittest import mock from pamqp import exceptions as pamqp_exception from pamqp import frame as pamqp_frame from pamqp import commands Index: AMQPStorm-2.10.4/amqpstorm/tests/unit/io/test_io.py =================================================================== --- AMQPStorm-2.10.4.orig/amqpstorm/tests/unit/io/test_io.py +++ AMQPStorm-2.10.4/amqpstorm/tests/unit/io/test_io.py @@ -1,7 +1,7 @@ import socket import ssl -import mock +from unittest import mock import amqpstorm.io from amqpstorm.exception import AMQPConnectionError Index: AMQPStorm-2.10.4/amqpstorm/tests/unit/io/test_io_exception.py =================================================================== --- AMQPStorm-2.10.4.orig/amqpstorm/tests/unit/io/test_io_exception.py +++ AMQPStorm-2.10.4/amqpstorm/tests/unit/io/test_io_exception.py @@ -3,7 +3,7 @@ import socket from errno import EINTR from errno import EWOULDBLOCK -import mock +from unittest import mock from amqpstorm import AMQPConnectionError from amqpstorm import compatibility Index: AMQPStorm-2.10.4/amqpstorm/tests/unit/test_rpc.py =================================================================== --- AMQPStorm-2.10.4.orig/amqpstorm/tests/unit/test_rpc.py +++ AMQPStorm-2.10.4/amqpstorm/tests/unit/test_rpc.py @@ -1,7 +1,7 @@ import threading import time -import mock +from unittest import mock from amqpstorm.exception import AMQPChannelError from amqpstorm.rpc import Rpc ++++++ pamqp3.patch ++++++ ++++ 1499 lines (skipped) ++++ between /work/SRC/openSUSE:Factory/python-amqpstorm/pamqp3.patch ++++ and /work/SRC/openSUSE:Factory/.python-amqpstorm.new.1538/pamqp3.patch