diff --git a/kombu-1.1.2.tar.bz2 b/kombu-1.1.2.tar.bz2 deleted file mode 100644 index 492354f..0000000 --- a/kombu-1.1.2.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:dee505ce74df821ca3e5952146c9af9b09b95a73382ce4877383499d61d026f3 -size 204046 diff --git a/kombu-1.1.6.tar.bz2 b/kombu-1.1.6.tar.bz2 new file mode 100644 index 0000000..ea8acec --- /dev/null +++ b/kombu-1.1.6.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09885c2818bc4409518ed9c0b7b33bd9cb3f97d0aee156a697a1a2cf09d961a0 +size 207710 diff --git a/python-kombu.changes b/python-kombu.changes index 896bcdb..bd24a5d 100644 --- a/python-kombu.changes +++ b/python-kombu.changes @@ -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 diff --git a/python-kombu.spec b/python-kombu.spec index 41b5e83..6071b97 100644 --- a/python-kombu.spec +++ b/python-kombu.spec @@ -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/