14
0
forked from pool/python-kombu

- Update to 1.4.0:

- Adds module kombu.mixins.
  - New example: Task Queue Example
  - MongoDB transport did not work with MongoDB >= 2.0 (Issue #66)
  - Redis-py version check did not account for beta identifiers in
    version string.
  - Producer and Consumer now accepts a connection instance as the
    first argument.
  - BrokerConnection has aquired a connected attribute that can be
    used to check if the connection instance has established a
    connection.
  - ConnectionPool.acquire_channel now returns the connections
    default channel rather than establising a new channel that must be manually handled.
  - Added kombu.common.maybe_declare
  - kombu.compat.entry_to_queue() has been moved to kombu.common
  - New module kombu.clocks now contains an implementation of
    Lamports logical clock.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-kombu?expand=0&rev=19
This commit is contained in:
Alexandre Rogoski
2011-09-22 17:05:09 +00:00
committed by Git OBS Bridge
parent 24f4238120
commit ad43ea6e20
4 changed files with 25 additions and 4 deletions

View File

@@ -1,3 +1,24 @@
-------------------------------------------------------------------
Thu Sep 22 16:59:42 UTC 2011 - alexandre@exatati.com.br
- Update to 1.4.0:
- Adds module kombu.mixins.
- New example: Task Queue Example
- MongoDB transport did not work with MongoDB >= 2.0 (Issue #66)
- Redis-py version check did not account for beta identifiers in
version string.
- Producer and Consumer now accepts a connection instance as the
first argument.
- BrokerConnection has aquired a connected attribute that can be
used to check if the connection instance has established a
connection.
- ConnectionPool.acquire_channel now returns the connections
default channel rather than establising a new channel that must be manually handled.
- Added kombu.common.maybe_declare
- kombu.compat.entry_to_queue() has been moved to kombu.common
- New module kombu.clocks now contains an implementation of
Lamports logical clock.
-------------------------------------------------------------------
Mon Sep 19 18:45:36 UTC 2011 - alexandre@exatati.com.br