forked from pool/python-kombu
- Update to version 2.2.6:
+ Adds messaging.entry_to_queue for compat with previous versions. + Changes from version 2.2.5: + Pidbox: Now sets queue expire at 10 seconds for reply queues. + EventIO: Now ignores ValueError raised by epoll unregister. + MongoDB: Fixes Issue #142 - Changes from version 2.2.4: + Support for msgpack-python 0.2.0 (Issue #143) + kombu.common.maybe_declare no longer caches entities with the auto_delete flag set. + New experimental filesystem transport. + Virtual Transports: Now support anonymous queues and exchanges. - retry argument to Producer.publish now works properly, and only later bound using .revive(channel). * ProducerPool now takes Producer argument. * We now patch amqplib's __del__ method to skip trying to close the socket * The Connection.ensure methods now accepts a max_retries value A value of 0 now means *do not retry*, which is distinct from :const:None * SQS Transport: Now has a lowercase sqs alias, so that it can be This can be disabled by setting the supports_fanout transport option: * SQS: Can now set the Amazon AWS region, by using the region * amqplib: Now uses localhost as default hostname instead of raising an * amqplib transport: Now supports login_method for SSL auth. OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-kombu?expand=0&rev=46
This commit is contained in:
committed by
Git OBS Bridge
parent
15db74aead
commit
523b46757d
@@ -1,3 +1,8 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Jul 11 12:52:40 UTC 2012 - saschpe@suse.de
|
||||
|
||||
- Re-enable testsuite and add it's build-time dependencies
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 10 22:40:59 UTC 2012 - alexandre@exatati.com.br
|
||||
|
||||
@@ -69,7 +74,7 @@ Thu Jun 21 14:40:14 UTC 2012 - alexandre@exatati.com.br
|
||||
- SQS: Default visibility timeout is now 30 minutes.
|
||||
Since we have ack emulation the visibility timeout is
|
||||
only in effect if the consumer is abrubtly terminated.
|
||||
- retry argument to ``Producer.publish`` now works properly,
|
||||
- retry argument to Producer.publish now works properly,
|
||||
when the declare argument is specified.
|
||||
- Json serializer: didn't handle buffer objects (Issue #135).
|
||||
Fix contributed by Jens Hoffrichter.
|
||||
@@ -103,8 +108,8 @@ Mon May 7 20:49:30 UTC 2012 - alexandre@exatati.com.br
|
||||
- Update to 2.1.8:
|
||||
* Bound Exchange/Queue's are now pickleable.
|
||||
* Consumer/Producer can now be instantiated without a channel,
|
||||
and only later bound using ``.revive(channel)``.
|
||||
* ProducerPool now takes ``Producer`` argument.
|
||||
and only later bound using .revive(channel).
|
||||
* ProducerPool now takes Producer argument.
|
||||
* kombu.utils.fxrange now counts forever if the
|
||||
stop argument is set to None.
|
||||
(fxrange is like xrange but for decimals).
|
||||
@@ -206,7 +211,7 @@ Sat Mar 10 17:00:40 UTC 2012 - saschpe@gmx.de
|
||||
- Update to version 2.1.1:
|
||||
* Connection URLs now supports encoded characters.
|
||||
* Fixed a case where connection pool could not recover from connection loss.
|
||||
* We now patch amqplib's ``__del__`` method to skip trying to close the socket
|
||||
* We now patch amqplib's __del__ method to skip trying to close the socket
|
||||
if it is not connected, as this resulted in an annoying warning.
|
||||
* Compression can now be used with binary message payloads.
|
||||
- Don't install INSTALL
|
||||
@@ -273,11 +278,11 @@ Mon Nov 28 02:19:24 UTC 2011 - alexandre@exatati.com.br
|
||||
In addition, an UndeliverableWarning is now emitted when
|
||||
the dead-letter queue is enabled and a message ends up there.
|
||||
* MongoDB transport now supports Replicasets (Issue #81).
|
||||
* The Connection.ensure`` methods now accepts a max_retries value
|
||||
* The Connection.ensure methods now accepts a max_retries value
|
||||
of 0.
|
||||
A value of 0 now means *do not retry*, which is distinct from :const:`None`
|
||||
A value of 0 now means *do not retry*, which is distinct from :const:None
|
||||
which means *retry indefinitely*.
|
||||
* SQS Transport: Now has a lowercase `sqs alias, so that it can be
|
||||
* SQS Transport: Now has a lowercase sqs alias, so that it can be
|
||||
used with broker URLs (Issue #82).
|
||||
* SQS Transport: Fixes KeyError on message acknowledgements (Issue #73).
|
||||
The SQS transport now uses UUID's for delivery tags, rather than
|
||||
@@ -455,14 +460,14 @@ Mon Jun 13 22:42:00 UTC 2011 - alexandre@exatati.com.br
|
||||
* SQS: Now supports fanout messaging by using SimpleDB to store routing
|
||||
tables.
|
||||
|
||||
This can be disabled by setting the `supports_fanout` transport option:
|
||||
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``
|
||||
* 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
|
||||
* amqplib: Now uses localhost as default hostname instead of raising an
|
||||
error.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
@@ -474,7 +479,7 @@ Tue Jun 7 22:57:44 UTC 2011 - alexandre@exatati.com.br
|
||||
* 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.
|
||||
* amqplib transport: Now supports login_method for SSL auth.
|
||||
Default login_method is AMQPLAIN.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
|
Reference in New Issue
Block a user