mirror of https://github.com/celery/kombu.git
Bumps version to 3.0.17 and updates Changelog
This commit is contained in:
parent
06863124d1
commit
96ed178cda
14
Changelog
14
Changelog
|
@ -13,21 +13,25 @@
|
||||||
|
|
||||||
- ``kombu[librabbitmq]`` now depends on librabbitmq 1.5.2.
|
- ``kombu[librabbitmq]`` now depends on librabbitmq 1.5.2.
|
||||||
|
|
||||||
|
- Async: Event loop now selectively removes file descriptors for the mode
|
||||||
|
it failed in, and keeps others (e.g read vs write).
|
||||||
|
|
||||||
|
Fix contributed by Roger Hu.
|
||||||
|
|
||||||
- CouchDB: Now works without userid set.
|
- CouchDB: Now works without userid set.
|
||||||
|
|
||||||
Fix contributed by Latitia M. Haskins.
|
Fix contributed by Latitia M. Haskins.
|
||||||
|
|
||||||
|
- SQLAlchemy: Now supports recovery from connection errors.
|
||||||
|
|
||||||
|
Contributed by Felix Schwarz.
|
||||||
|
|
||||||
- Redis: Restore at shutdown now works when ack emulation is disabled.
|
- Redis: Restore at shutdown now works when ack emulation is disabled.
|
||||||
|
|
||||||
- :func:`kombu.common.eventloop` accidentally swallowed socket errors.
|
- :func:`kombu.common.eventloop` accidentally swallowed socket errors.
|
||||||
|
|
||||||
- Adds :func:`kombu.utils.url.sanitize_url`
|
- Adds :func:`kombu.utils.url.sanitize_url`
|
||||||
|
|
||||||
- Async: Event loop now selectively removes file descriptors for the mode
|
|
||||||
it failed in, and keeps others (e.g read vs write).
|
|
||||||
|
|
||||||
Fix contributed by Roger Hu.
|
|
||||||
|
|
||||||
.. _version-3.0.16:
|
.. _version-3.0.16:
|
||||||
|
|
||||||
3.0.16
|
3.0.16
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
kombu - Messaging library for Python
|
kombu - Messaging library for Python
|
||||||
========================================
|
========================================
|
||||||
|
|
||||||
:Version: 3.0.16
|
:Version: 3.0.17
|
||||||
|
|
||||||
`Kombu` is a messaging library for Python.
|
`Kombu` is a messaging library for Python.
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ version_info_t = namedtuple(
|
||||||
'version_info_t', ('major', 'minor', 'micro', 'releaselevel', 'serial'),
|
'version_info_t', ('major', 'minor', 'micro', 'releaselevel', 'serial'),
|
||||||
)
|
)
|
||||||
|
|
||||||
VERSION = version_info_t(3, 0, 16, '', '')
|
VERSION = version_info_t(3, 0, 17, '', '')
|
||||||
__version__ = '{0.major}.{0.minor}.{0.micro}{0.releaselevel}'.format(VERSION)
|
__version__ = '{0.major}.{0.minor}.{0.micro}{0.releaselevel}'.format(VERSION)
|
||||||
__author__ = 'Ask Solem'
|
__author__ = 'Ask Solem'
|
||||||
__contact__ = 'ask@celeryproject.org'
|
__contact__ = 'ask@celeryproject.org'
|
||||||
|
|
Loading…
Reference in New Issue