Skip to content

Commit 98fa7f3

Browse files
author
Ask Solem
committed
Bumped version to 2.0.3 and updated Changelog
1 parent 8494b08 commit 98fa7f3

File tree

4 files changed

+88
-3
lines changed

4 files changed

+88
-3
lines changed

Changelog

Lines changed: 85 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,91 @@
55
.. contents::
66
:local:
77

8+
2.0.3
9+
=====
10+
:release-date: TBA
11+
12+
Fixes
13+
-----
14+
15+
* celeryd: Properly handle connection errors while closing consumers.
16+
17+
* celeryd: Events are now buffered while the connection is down,
18+
and re-sent when the connection is re-established.
19+
20+
* No longer depends on the ``mailer`` package.
21+
22+
This package had a namespace collision with ``django-mailer``,
23+
so its functionality was replaced.
24+
25+
* Redis result backend: Redis doesn't have database names,
26+
database numbers. The default database is now 0.
27+
28+
* :class:`~celery.task.control.inspect`:
29+
Was requesting an invalid command because of a typo.
30+
31+
See http://github.com/ask/celery/issues/issue/170
32+
33+
* Worker crashed if the value of ``CELERY_TASK_ERROR_WHITELIST`` was
34+
not iterable
35+
36+
* :func:`~celery.execute.apply`: Make sure ``kwargs["task_id"]`` is
37+
always set.
38+
39+
* ``AsyncResult.traceback``: Now returns ``None``, instead of raising
40+
:exc:`KeyError` if traceback is missing.
41+
42+
* :class:`~celery.task.control.inspect`: Replies did not work correctly
43+
if no destination was specified.
44+
45+
* If a task wanted to store a result but keep the state in a custom
46+
state, ``encode_result`` returned None so nothing was passed
47+
to the backend.
48+
49+
* celeryd: A warning is now emitted if sending of task error
50+
e-mails fails.
51+
52+
* Debian init scripts: Commands should not run in a subshell
53+
54+
See http://github.com/ask/celery/issues/issue/163
55+
56+
* Debian init scripts: Use abspath for celeryd to allow stat
57+
58+
See http://github.com/ask/celery/issues/issue/162
59+
60+
Documentation
61+
-------------
62+
63+
* getting-started/broker-installation: Fixed typo
64+
65+
``set_permissions ""`` -> ``set_permissions ".*"``.
66+
67+
* Tasks Userguide: Added section on database transactions.
68+
69+
See http://github.com/ask/celery/issues/issue/169
70+
71+
* Routing Userguide: Fixed typo ``"feed": -> {"queue": "feeds"}``.
72+
73+
See http://github.com/ask/celery/issues/issue/169
74+
75+
* Documented the default values for the ``CELERYD_CONCURRENCY``
76+
and ``CELERYD_PREFETCH_MULTIPLIER`` settings.
77+
78+
* Tasks Userguide: Fixed typos in the subtask example
79+
80+
* celery.signals: Documented worker_process_init.
81+
82+
* Daemonization cookbook: Need to export DJANGO_SETTINGS_MODULE in
83+
``/etc/default/celeryd``.
84+
85+
* Added some more FAQs from stack overflow
86+
87+
* Daemonization cookbook: Fixed typo ``CELERYD_LOGFILE/CELERYD_PIDFILE``
88+
89+
to ``CELERYD_LOG_FILE`` / ``CELERYD_PID_FILE``
90+
91+
Also added troubleshooting section for the init scripts.
92+
893
2.0.2
994
=====
1095
:release-date: 2010-07-22 11:31 A.M CEST

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
.. image:: http://cloud.github.com/downloads/ask/celery/celery_favicon_128.png
66

7-
:Version: 2.0.2
7+
:Version: 2.0.3
88
:Web: http://celeryproject.org/
99
:Download: http://pypi.python.org/pypi/celery/
1010
:Source: http://github.com/ask/celery/

celery/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Distributed Task Queue"""
22

3-
VERSION = (2, 0, 2)
3+
VERSION = (2, 0, 3)
44

55
__version__ = ".".join(map(str, VERSION[0:3])) + "".join(VERSION[3:])
66
__author__ = "Ask Solem"

docs/includes/introduction.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
:Version: 2.0.2
1+
:Version: 2.0.3
22
:Web: http://celeryproject.org/
33
:Download: http://pypi.python.org/pypi/celery/
44
:Source: http://github.com/ask/celery/

0 commit comments

Comments
 (0)