Browse Source

Updates Changelog

Ask Solem 11 years ago
parent
commit
f4c6512bbb
1 changed files with 26 additions and 1 deletions
  1. 26 1
      Changelog

+ 26 - 1
Changelog

@@ -13,7 +13,7 @@ If you're looking for versions prior to 3.0.x you should go to :ref:`history`.
 
 3.0.24
 ======
-:release-date: 2013-09-19 XX:XX X.X BST
+:release-date: 2013-10-11 04:40 P.M BST
 
 - Now depends on :ref:`Kombu 2.5.15 <kombu:version-2.5.15>`.
 
@@ -31,6 +31,11 @@ If you're looking for versions prior to 3.0.x you should go to :ref:`history`.
 - The worker would no longer start if the `-P solo` pool was selected
   (Issue #1548).
 
+- Redis/Cache result backends would not complete chords
+  if any of the tasks were retried (Issue #1401).
+
+- Task decorator is no longer lazy if app is finalized.
+
 - AsyncResult: Fixed bug with ``copy(AsyncResult)`` when no
   ``current_app`` available.
 
@@ -38,6 +43,26 @@ If you're looking for versions prior to 3.0.x you should go to :ref:`history`.
 
 - Loader now ignores :envvar:`CELERY_CONFIG_MODULE` if value is empty string.
 
+- Fixed race condition in Proxy object where it tried to
+  delete an attribute twice, resulting in :exc:`AttributeError`.
+
+- Task methods now works with the :setting:`CELERY_ALWAYS_EAGER` setting
+  (Issue #1478).
+
+- :class:`~kombu.common.Broadcast` queues were accidentally declared
+  when publishing tasks (Issue #1540).
+
+- New :envvar:`C_FAKEFORK` environment variable can be used to
+  debug the init scripts.
+
+    Setting this will skip the daemonization step so that errors
+    printed to stderr after standard outs are closed can be seen::
+
+        $ C_FAKEFORK /etc/init.d/celeryd start
+
+    This works with the `celery multi` command in general.
+
+- ``get_pickleable_etype`` did not always return a value (Issue #1556).
 - Fixed bug where ``app.GroupResult.restore`` would fall back to the default
   app.