forked from pool/python-kombu
Compare commits
4 Commits
Author | SHA256 | Date | |
---|---|---|---|
|
1515665369 | ||
d7dc29f2d7 | |||
|
df985b2002 | ||
0ed3f37fff |
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:011c4cd9a355c14a1de8d35d257314a1d2456d52b7140388561acac3cf1a97bf
|
||||
size 439344
|
3
kombu-5.4.2.tar.gz
Normal file
3
kombu-5.4.2.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:eef572dd2fd9fc614b37580e3caeafdd5af46c1eff31e7fba89138cdb406f2cf
|
||||
size 442858
|
@ -1,3 +1,46 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Oct 9 08:16:35 UTC 2024 - Markéta Machová <mmachova@suse.com>
|
||||
|
||||
- Skip one test failing with new redis, upstream is aware of that
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 3 08:31:50 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
- update to 5.4.2:
|
||||
* Fixed issue with SQS #2113
|
||||
* tzdata is required for machines without IANA database
|
||||
* blacksmith.sh: Migrate workflows to Blacksmith
|
||||
* Revert "Validate SQS SSL certs by default"
|
||||
- update to 5.4.1:
|
||||
* Update mypy to 1.11.2
|
||||
* SQS: Fixes #2091 queue_delete() method doesn't actually
|
||||
delete the queue
|
||||
* Validate SQS SSL certs by default
|
||||
* Resolving TypeError, during version unpacking
|
||||
* Revert: allow users to disable broker heartbeats by not
|
||||
providing a timeout
|
||||
- update to 5.4.0:
|
||||
* fix: Fanout exchange messages mixed across virtual databases
|
||||
in Redis sentinel
|
||||
* Pin pymongo to latest version 4.7.2
|
||||
* enable/fix test_etcd.py (resolves #2001)
|
||||
* Limit requests<2.32.0 due to docker-py issue 3256
|
||||
* enhance: allow users to disable broker heartbeats
|
||||
* enhance: allow uses to disable broker heartbeats by not
|
||||
providing a timeout
|
||||
* chore(typing): annotate `utils/debug.py`
|
||||
* ConnectionPool can't be used after .resize(..., reset=True)
|
||||
(resolves #2018)
|
||||
* Fix Redis connections after reconnect - consumer starts
|
||||
consuming the tasks after crash.
|
||||
* Add support for mongodb+srv scheme
|
||||
* Reverted limiting requests<2.32.0 in requirements/default.txt
|
||||
but kept in tox.ini due to docker-py issue 3256
|
||||
* Redis transport - Redelivered messages should respect the
|
||||
original priority
|
||||
* Exclude Unit 3.9 from CI
|
||||
* Fixed CI error from excluding Python 3.9 unit tests
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Apr 14 07:46:57 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
|
@ -18,7 +18,7 @@
|
||||
|
||||
%{?sle15_python_module_pythons}
|
||||
Name: python-kombu
|
||||
Version: 5.3.7
|
||||
Version: 5.4.2
|
||||
Release: 0
|
||||
Summary: AMQP Messaging Framework for Python
|
||||
License: BSD-3-Clause
|
||||
@ -27,7 +27,7 @@ Source: https://files.pythonhosted.org/packages/source/k/kombu/kombu-%{v
|
||||
# PATCH-FIX-OPENSUSE Use Pyro4 compatibility for now, upstream should switch
|
||||
# for 5.3
|
||||
Patch0: support-pyro-5.patch
|
||||
BuildRequires: %{python_module Brotli >= 1.0.0}
|
||||
BuildRequires: %{python_module Brotli >= 1.0.9}
|
||||
BuildRequires: %{python_module PyYAML >= 3.10}
|
||||
BuildRequires: %{python_module Pyro5}
|
||||
BuildRequires: %{python_module SQLAlchemy}
|
||||
@ -36,20 +36,18 @@ BuildRequires: %{python_module azure-identity >= 1.12.0}
|
||||
BuildRequires: %{python_module boto3 >= 1.26.143}
|
||||
BuildRequires: %{python_module hypothesis}
|
||||
BuildRequires: %{python_module msgpack}
|
||||
BuildRequires: %{python_module pycurl >= 7.43.0.2}
|
||||
BuildRequires: %{python_module pycurl >= 7.43.0.5}
|
||||
BuildRequires: %{python_module pytest}
|
||||
BuildRequires: %{python_module redis >= 3.4.1}
|
||||
BuildRequires: %{python_module setuptools >= 20.6.7}
|
||||
BuildRequires: %{python_module redis >= 4.5.2}
|
||||
BuildRequires: %{python_module setuptools >= 47}
|
||||
BuildRequires: %{python_module vine}
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: python-rpm-macros
|
||||
BuildRequires: timezone
|
||||
Requires: python-amqp >= 5.1.1
|
||||
Requires: python-tzdata
|
||||
Requires: python-vine
|
||||
%if 0%{?python_version_nodots} < 310
|
||||
Requires: python-typing_extensions
|
||||
%endif
|
||||
Recommends: python-Brotli >= 1.0.0
|
||||
Recommends: python-Brotli >= 1.0.9
|
||||
Recommends: python-PyYAML >= 3.10
|
||||
BuildArch: noarch
|
||||
%python_subpackages
|
||||
@ -81,7 +79,8 @@ rm t/unit/transport/test_azureservicebus.py
|
||||
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
||||
|
||||
%check
|
||||
%pytest
|
||||
# test_global_keyprefix_transaction doesn't support new redis yet https://github.com/celery/kombu/pull/2132
|
||||
%pytest -k "not test_global_keyprefix_transaction"
|
||||
|
||||
%files %{python_files}
|
||||
%license LICENSE
|
||||
|
Loading…
x
Reference in New Issue
Block a user