Accepting request 74900 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/74900 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-kombu?expand=0&rev=3
This commit is contained in:
commit
0d04b65849
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:dee505ce74df821ca3e5952146c9af9b09b95a73382ce4877383499d61d026f3
|
||||
size 204046
|
3
kombu-1.1.6.tar.bz2
Normal file
3
kombu-1.1.6.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:09885c2818bc4409518ed9c0b7b33bd9cb3f97d0aee156a697a1a2cf09d961a0
|
||||
size 207710
|
@ -1,3 +1,55 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Jun 13 22:42:00 UTC 2011 - alexandre@exatati.com.br
|
||||
|
||||
- Update to 1.1.6:
|
||||
* Redis: Fixes issue introduced in 1.1.4, where a redis connection
|
||||
failure could leave consumer hanging forever.
|
||||
* SQS: Now supports fanout messaging by using SimpleDB to store routing
|
||||
tables.
|
||||
|
||||
This can be disabled by setting the `supports_fanout` transport option:
|
||||
|
||||
>>> BrokerConnection(transport="SQS",
|
||||
... transport_options={"supports_fanout": False})
|
||||
* SQS: Now properly deletes a message when a message is acked.
|
||||
* SQS: Can now set the Amazon AWS region, by using the ``region``
|
||||
transport option.
|
||||
* amqplib: Now uses `localhost` as default hostname instead of raising an
|
||||
error.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jun 7 22:57:44 UTC 2011 - alexandre@exatati.com.br
|
||||
|
||||
- Update to 1.1.5:
|
||||
* Fixes compatibility with redis-py 2.4.4.
|
||||
- Aditional changes from:
|
||||
* Redis transport: Now requires redis-py version 2.4.4 or later.
|
||||
* New Amazon SQS transport added.
|
||||
* librabbitmq transport: Fixes default credentials support.
|
||||
* amqplib transport: Now supports `login_method` for SSL auth.
|
||||
Default login_method is AMQPLAIN.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Apr 21 18:07:47 UTC 2011 - alexandre@exatati.com.br
|
||||
|
||||
- Update to 1.1.3:
|
||||
* Redis: Consuming from multiple connections now works with
|
||||
Eventlet.
|
||||
* Redis: Can now perform channel operations while the channel
|
||||
is in BRPOP/LISTEN mode (Issue #35).
|
||||
Also the async BRPOP now times out after 1 second, this
|
||||
means that cancelling consuming from a queue/starting
|
||||
consuming from additional queues has a latency of up to
|
||||
one second (BRPOP does not support subsecond timeouts).
|
||||
* Virtual: Allow channel objects to be closed multiple times
|
||||
without error.
|
||||
* amqplib: AttributeError has been added to the list of known
|
||||
connection related errors (Connection.connection_errors).
|
||||
* amqplib: Now converts SSLError timeout errors to
|
||||
socket.timeout (http://bugs.python.org/issue10272)
|
||||
* Ensures cyclic references are destroyed when the connection
|
||||
is closed.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Apr 6 17:43:07 UTC 2011 - alexandre@exatati.com.br
|
||||
|
||||
|
@ -11,19 +11,18 @@
|
||||
# case the license is the MIT License). An "Open Source License" is a
|
||||
# license that conforms to the Open Source Definition (Version 1.9)
|
||||
# published by the Open Source Initiative.
|
||||
|
||||
#
|
||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
|
||||
%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
|
||||
%{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
|
||||
|
||||
%define mod_name kombu
|
||||
|
||||
Name: python-%{mod_name}
|
||||
Version: 1.1.2
|
||||
Release: 1
|
||||
Version: 1.1.6
|
||||
Release: 0
|
||||
License: BSD License
|
||||
Summary: AMQP Messaging Framework for Python
|
||||
Url: http://github.com/ask/kombu/
|
||||
|
Loading…
Reference in New Issue
Block a user