kombu/Changelog

81 lines
1.9 KiB
Plaintext
Raw Normal View History

2010-06-23 10:08:39 +00:00
================
Change history
================
2011-03-21 13:21:44 +00:00
1.0.6
=====
:release-date: 2011-03-21 16:00 P.M CET
* The ``delivery_mode`` aliases (persistent/transient) were not automatically
converted to integer, and would cause a crash if using the amqplib
transport.
* Redis: The redis-py :exc:`InvalidData` exception suddenly changed name to
:exc:`DataError`.
2011-03-05 10:50:00 +00:00
1.0.5
=====
2011-03-17 18:09:58 +00:00
:release-date: 2011-03-17 16:00 P.M CET
2011-03-05 10:50:00 +00:00
* Fixed memory leak when creating virtual channels. All virtual transports
2011-03-17 18:09:58 +00:00
affected (redis, mongodb, memory, django, sqlalchemy, couchdb, beanstalk).
2011-03-05 10:50:00 +00:00
* Virtual Transports: Fixed potential race condition when acking messages.
If you have been affected by this, the error would show itself as an
exception raised by the OrderedDict implementation. (``object no longer
exists``).
* MongoDB transport requires the ``findandmodify`` command only available in
MongoDB 1.3+, so now raises an exception if connected to an incompatible
server version.
* Virtual Transports: ``basic.cancel`` should not try to remove unknown
consumer tag.
1.0.4
=====
:release-date: 2011-02-28 16:00 P.M CET
* Added Transport.polling_interval
Used by django-kombu to increase the time to sleep between SELECTs when
there are no messages in the queue.
Users of django-kombu should upgrade to django-kombu v0.9.2.
1.0.3
=====
:release-date: 2011-02-12 16:00 P.M CET
* ConnectionPool: Re-connect if amqplib connection closed
* Adds ``Queue.as_dict`` + ``Exchange.as_dict``.
* Copyright headers updated to include 2011.
1.0.2
=====
:release-date: 2011-01-31 10:45 P.M CET
* amqplib: Message properties were not set properly.
* Ghettoq backend names are now automatically translated to the new names.
1.0.1
=====
:release-date: 2011-01-28 12:00 P.M CET
* Redis: Now works with Linux (epoll)
1.0.0
=====
:release-date: 2011-01-27 12:00 P.M CET
* Initial release
2010-06-23 10:08:39 +00:00
0.1.0
2010-07-22 14:20:38 +00:00
=====
:release-date: 2010-07-22 4:20 P.M CET
2010-06-23 10:08:39 +00:00
* Initial fork of carrot