Accepting request 629552 from devel:languages:python

- Updated to 4.2.1
    * The 4.2.0 release contained remains of the ``async`` module by accident.
      This is now fixed.
    * Handle librabbitmq fileno raising a ValueError when socket is not
      connected.
    *  Now passing ``max_retries``, ``interval_start``,
       ``interval_step``, ``interval_max`` parameters from broker
       ``transport_options`` to
       :meth:`~kombu.Connection.ensure_connection` when returning
       :meth:`~kombu.Connection.default_connection` (Issue #765).
    * Qpid: messages are now durable by default
    *  Kombu now requires version 2.10.4 or greater of the redis
       library, in line with Celery
    *  Fixed ImportError in some environments with outdated simplejson
    *  MongoDB: fixed failure on MongoDB versions with an "-rc" tag
    *  Ensure periodic polling frequency does not exceed timeout in
       virtual transport
    *  Fixed string handling when using python-future module
    *  Replaced "async" with "asynchronous" in preparation for Python
       3.7
    *  Allow removing pool size limit when in use
    *  Codebase improvements and fixes
    *  Documentation improvements
- added python as requirement for ssl module is needed by amqp

OBS-URL: https://build.opensuse.org/request/show/629552
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-kombu?expand=0&rev=53
This commit is contained in:
Dominique Leuenberger 2018-08-17 22:04:47 +00:00 committed by Git OBS Bridge
commit f8bfef6eb8
4 changed files with 36 additions and 5 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:4249d9dd9dbf1fcec471d1c2def20653c9310dd1a217272d77e4844f9d5273cb
size 421875

3
kombu-4.2.1.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:86adec6c60f63124e2082ea8481bbe4ebe04fde8ebed32c177c7f0cd2c1c9082
size 423926

View File

@ -1,3 +1,31 @@
-------------------------------------------------------------------
Wed Aug 15 14:39:29 UTC 2018 - sjamgade@suse.com
- Updated to 4.2.1
* The 4.2.0 release contained remains of the ``async`` module by accident.
This is now fixed.
* Handle librabbitmq fileno raising a ValueError when socket is not
connected.
* Now passing ``max_retries``, ``interval_start``,
``interval_step``, ``interval_max`` parameters from broker
``transport_options`` to
:meth:`~kombu.Connection.ensure_connection` when returning
:meth:`~kombu.Connection.default_connection` (Issue #765).
* Qpid: messages are now durable by default
* Kombu now requires version 2.10.4 or greater of the redis
library, in line with Celery
* Fixed ImportError in some environments with outdated simplejson
* MongoDB: fixed failure on MongoDB versions with an "-rc" tag
* Ensure periodic polling frequency does not exceed timeout in
virtual transport
* Fixed string handling when using python-future module
* Replaced "async" with "asynchronous" in preparation for Python
3.7
* Allow removing pool size limit when in use
* Codebase improvements and fixes
* Documentation improvements
- added python as requirement for ssl module is needed by amqp
-------------------------------------------------------------------
Wed May 23 17:16:28 UTC 2018 - mcepl@suse.com

View File

@ -18,7 +18,7 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-kombu
Version: 4.1.0
Version: 4.2.1
Release: 0
Summary: AMQP Messaging Framework for Python
License: BSD-3-Clause
@ -31,20 +31,23 @@ BuildRequires: %{python_module amqp >= 2.1.4}
BuildRequires: %{python_module boto3}
BuildRequires: %{python_module case}
BuildRequires: %{python_module msgpack-python}
BuildRequires: %{python_module pytest-sugar}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module pytz}
BuildRequires: %{python_module redis}
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: python
BuildRequires: python-rpm-macros
Requires: python
Requires: python-amqp
Obsoletes: python-carrot
BuildArch: noarch
%if 0%{?suse_version}
Suggests: couchdb
Suggests: mongodb
Suggests: rabbitmq-server
%endif
Obsoletes: python-carrot
%python_subpackages
%description