From 6acca9d41fc205c5c16e9f98a7768fefde8d526bc0785d0bb0ef7399026f4e0e Mon Sep 17 00:00:00 2001 From: Alexandre Rogoski Date: Thu, 21 Mar 2013 21:58:27 +0000 Subject: [PATCH] - Update to 2.5.8: - Now depends on amqp 1.0.10 which fixes a Python 3 compatibility error. - Redis: Fixed a possible race condition (Issue #171). - Redis: Ack emulation/visibility_timeout can now be disabled using a transport option. Ack emulation adds quite a lot of overhead to ensure data is safe even in the event of an unclean shutdown. If data loss do not worry you there is now an `ack_emulation` transport option you can use to disable it: Connection('redis://', transport_options={'ack_emulation': False}) - SQS: Fixed boto v2.7 compatibility (Issue #207). - Exchange: Should not try to re-declare default exchange ("") (Issue #209). - SQS: Long polling is now disabled by default as it was not implemented correctly, resulting in long delays between receiving messages (Issue #202). - Fixed Python 2.6 incompatibility depending on exc.errno being available. Fix contributed by Ephemera. - Update to 2.5.8: - Now depends on amqp 1.0.10 which fixes a Python 3 compatibility error. - Redis: Fixed a possible race condition (Issue #171). - Redis: Ack emulation/visibility_timeout can now be disabled using a transport option. Ack emulation adds quite a lot of overhead to ensure data is safe even in the event of an unclean shutdown. If data loss do not worry you there is now an `ack_emulation` transport option you can use OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-kombu?expand=0&rev=74 --- accept-newer-amqp-versions.diff | 9 +++++---- kombu-2.5.7.tar.gz | 3 --- kombu-2.5.8.tar.gz | 3 +++ python-kombu.changes | 24 ++++++++++++++++++++++++ python-kombu.spec | 2 +- python3-kombu.changes | 24 ++++++++++++++++++++++++ python3-kombu.spec | 2 +- 7 files changed, 58 insertions(+), 9 deletions(-) delete mode 100644 kombu-2.5.7.tar.gz create mode 100644 kombu-2.5.8.tar.gz diff --git a/accept-newer-amqp-versions.diff b/accept-newer-amqp-versions.diff index 40fa09d..cc46fa3 100644 --- a/accept-newer-amqp-versions.diff +++ b/accept-newer-amqp-versions.diff @@ -4,17 +4,18 @@ Index: kombu.egg-info/requires.txt +++ kombu.egg-info/requires.txt @@ -1,2 +1,2 @@ anyjson>=0.3.3 --amqp>=1.0.9,<1.1.0 +-amqp>=1.0.10,<1.1.0 +\ No newline at end of file ++amqp>=1.0.10 \ No newline at end of file -+amqp>=1.0.9 Index: requirements/default.txt =================================================================== --- requirements/default.txt.orig +++ requirements/default.txt @@ -1,2 +1,2 @@ anyjson>=0.3.3 --amqp>=1.0.9,<1.1.0 -+amqp>=1.0.9 +-amqp>=1.0.10,<1.1.0 ++amqp>=1.0.10 Index: setup.cfg =================================================================== --- setup.cfg.orig diff --git a/kombu-2.5.7.tar.gz b/kombu-2.5.7.tar.gz deleted file mode 100644 index 2c1c8ed..0000000 --- a/kombu-2.5.7.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:32bcfabc02366738101861f06e737106dea8d2ea784a588d7a9e1fbd940b7a78 -size 301904 diff --git a/kombu-2.5.8.tar.gz b/kombu-2.5.8.tar.gz new file mode 100644 index 0000000..b777292 --- /dev/null +++ b/kombu-2.5.8.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92a4b6129e7a08f24a1b50f8853e3cad321b564a496e8ecc0c7f2bae3f3b71e4 +size 302410 diff --git a/python-kombu.changes b/python-kombu.changes index 354e956..3d37e81 100644 --- a/python-kombu.changes +++ b/python-kombu.changes @@ -1,3 +1,27 @@ +------------------------------------------------------------------- +Thu Mar 21 19:57:35 UTC 2013 - alexandre@exatati.com.br + +- Update to 2.5.8: + - Now depends on amqp 1.0.10 which fixes a Python 3 compatibility + error. + - Redis: Fixed a possible race condition (Issue #171). + - Redis: Ack emulation/visibility_timeout can now be disabled + using a transport option. + Ack emulation adds quite a lot of overhead to ensure data is safe + even in the event of an unclean shutdown. If data loss do not worry + you there is now an `ack_emulation` transport option you can use + to disable it: + Connection('redis://', transport_options={'ack_emulation': False}) + - SQS: Fixed boto v2.7 compatibility (Issue #207). + - Exchange: Should not try to re-declare default exchange ("") + (Issue #209). + - SQS: Long polling is now disabled by default as it was not + implemented correctly, resulting in long delays between receiving + messages (Issue #202). + - Fixed Python 2.6 incompatibility depending on exc.errno + being available. + Fix contributed by Ephemera. + ------------------------------------------------------------------- Fri Mar 8 13:10:29 UTC 2013 - alexandre@exatati.com.br diff --git a/python-kombu.spec b/python-kombu.spec index d277da5..f3536a4 100644 --- a/python-kombu.spec +++ b/python-kombu.spec @@ -17,7 +17,7 @@ Name: python-kombu -Version: 2.5.7 +Version: 2.5.8 Release: 0 Summary: AMQP Messaging Framework for Python License: BSD-3-Clause diff --git a/python3-kombu.changes b/python3-kombu.changes index ec6a6d4..10f26fa 100644 --- a/python3-kombu.changes +++ b/python3-kombu.changes @@ -1,3 +1,27 @@ +------------------------------------------------------------------- +Thu Mar 21 19:59:14 UTC 2013 - alexandre@exatati.com.br + +- Update to 2.5.8: + - Now depends on amqp 1.0.10 which fixes a Python 3 compatibility + error. + - Redis: Fixed a possible race condition (Issue #171). + - Redis: Ack emulation/visibility_timeout can now be disabled + using a transport option. + Ack emulation adds quite a lot of overhead to ensure data is safe + even in the event of an unclean shutdown. If data loss do not worry + you there is now an `ack_emulation` transport option you can use + to disable it: + Connection('redis://', transport_options={'ack_emulation': False}) + - SQS: Fixed boto v2.7 compatibility (Issue #207). + - Exchange: Should not try to re-declare default exchange ("") + (Issue #209). + - SQS: Long polling is now disabled by default as it was not + implemented correctly, resulting in long delays between receiving + messages (Issue #202). + - Fixed Python 2.6 incompatibility depending on exc.errno + being available. + Fix contributed by Ephemera. + ------------------------------------------------------------------- Fri Mar 8 13:10:29 UTC 2013 - alexandre@exatati.com.br diff --git a/python3-kombu.spec b/python3-kombu.spec index 4da3bae..8af8d70 100644 --- a/python3-kombu.spec +++ b/python3-kombu.spec @@ -17,7 +17,7 @@ Name: python3-kombu -Version: 2.5.7 +Version: 2.5.8 Release: 0 Summary: AMQP Messaging Framework for Python License: BSD-2-Clause