|
@@ -5,12 +5,76 @@
|
|
|
.. contents::
|
|
|
:local:
|
|
|
|
|
|
+.. _version-2.3.2:
|
|
|
+
|
|
|
+2.3.2
|
|
|
+=====
|
|
|
+:release-date: 2011-10-07 05:00 P.M BST
|
|
|
+
|
|
|
+.. _v232-news:
|
|
|
+
|
|
|
+News
|
|
|
+----
|
|
|
+
|
|
|
+* Improved Contributing guide.
|
|
|
+
|
|
|
+ If you'd like to contribute to Celery you should read this
|
|
|
+ guide: http://ask.github.com/celery/contributing.html
|
|
|
+
|
|
|
+ We are looking for contributors of all skill levels, so don't
|
|
|
+ hesitate!
|
|
|
+
|
|
|
+* Now depends on Kombu 1.3.1
|
|
|
+
|
|
|
+* ``Task.request`` now contains the current worker host name (Issue #460).
|
|
|
+
|
|
|
+ Available as ``task.request.hostname``.
|
|
|
+
|
|
|
+* It is now easier for app subclasses to extend how they are pickled.
|
|
|
+ (see :class:`celery.app.AppPickler`).
|
|
|
+
|
|
|
+.. _v232-fixes:
|
|
|
+
|
|
|
+Fixes
|
|
|
+-----
|
|
|
+
|
|
|
+* `purge/discard_all` was not working correctly (Issue #455).
|
|
|
+
|
|
|
+* The coloring of log messages didn't handle non-ASCII data well
|
|
|
+ (Issue #427).
|
|
|
+
|
|
|
+* [Windows] the multiprocessing pool tried to import ``os.kill``
|
|
|
+ even though this is not available there (Issue #450).
|
|
|
+
|
|
|
+* Fixes case where the worker could become unresponsive because of tasks
|
|
|
+ exceeding the hard time limit.
|
|
|
+
|
|
|
+* The ``task-sent`` event was missing from the event reference.
|
|
|
+
|
|
|
+* ``ResultSet.iterate`` now returns results as they finish (Issue #459).
|
|
|
+
|
|
|
+ This was not the case previously, even though the documentation
|
|
|
+ states this was the expected behavior.
|
|
|
+
|
|
|
+* Retries will no longer be performed when tasks are called directly
|
|
|
+ (using ``__call__``).
|
|
|
+
|
|
|
+ Instead the exception passed to ``retry`` will be re-raised.
|
|
|
+
|
|
|
+* Eventlet no longer crashes if autoscale is enabled.
|
|
|
+
|
|
|
+ growing and shrinking eventlet pools is still not supported.
|
|
|
+
|
|
|
+* py24 target removed from :file:`tox.ini`.
|
|
|
+
|
|
|
.. _version-2.3.1:
|
|
|
|
|
|
2.3.1
|
|
|
=====
|
|
|
:release-date: 2011-08-07 08:00 P.M BST
|
|
|
|
|
|
+.. v231-fixes:
|
|
|
+
|
|
|
Fixes
|
|
|
-----
|
|
|
|