Changelog 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. ==============
  2. Change history
  3. ==============
  4. 0.1.10 :date:`2009-05-11 12:46 P.M CET` :author:askh@opera.com
  5. * Tasks now supports both positional arguments and keyword arguments.
  6. * Requires carrot 0.3.8.
  7. * The daemon now tries to reconnect if the connection is lost.
  8. 0.1.8 :date:`2009-05-07 12:27 P.M CET` :author:askh@opera.com
  9. * Better test coverage
  10. * More documentation
  11. * celeryd doesn't emit "Queue is empty" message if
  12. :setting:`CELERYD_EMPTY_MSG_EMIT_EVERY` is 0.
  13. 0.1.7 :date:`2009-04-30 1:50 P.M CET` :author:askh@opera.com
  14. * Added some unittests
  15. * Can now use the database for task metadata (like if the task
  16. has been executed or not). Set :setting:`CELERY_TASK_META`
  17. * Can now run ``python setup.py test`` to run the unittests from within
  18. the ``testproj`` project.
  19. * Can set the AMQP exchange/routing key/queue using
  20. :setting:`CELERY_AMQP_EXCHANGE`, :setting:`CELERY_AMQP_ROUTING_KEY`,
  21. and :setting:`CELERY_AMQP_CONSUMER_QUEUE`.
  22. 0.1.6 :date:`2009-04-28 2:13 P.M CET` :author:askh@opera.com
  23. * Introducing ``TaskSet``. A set of subtasks is executed and you can find
  24. out how many, or if all them, are done (excellent for progress bars and
  25. such)
  26. * Now catches all exceptions when running ``Task.__call__``, so the daemon
  27. doesn't die. This does't happen for pure functions yet, only
  28. :class:`Task` classes.
  29. * ``autodiscover()`` now works with zipped eggs.
  30. * celeryd: Now adds curernt working directory to ``sys.path`` for
  31. convenience.
  32. * The ``run_every`` attribute of :class:`PeriodicTask` classes can now
  33. be a :class:`datetime.timedelta()` object.
  34. * celeryd: You can now set the ``DJANGO_PROJECT_DIR`` variable for
  35. ``celeryd`` and it will add that to ``sys.path`` for easy launching.
  36. * Can now check if a task has been executed or not via HTTP.
  37. You can do this by including the celery ``urls.py`` into your project,
  38. >>> url(r'^celery/$', include("celery.urls"))
  39. then visiting the following url,::
  40. http://mysite/celery/$task_id/done/
  41. this will return a JSON dictionary like e.g:
  42. >>> {"task": {"id": $task_id, "executed": true}}
  43. * ``delay_task`` now returns string id, not :class:`uuid.UUID` instance.
  44. * Now has ``PeriodicTasks``, to have ``cron`` like functionality.
  45. * Project changed name from ``crunchy`` to ``celery``. The details of
  46. the name change request is in ``docs/name_change_request.txt``.
  47. 0.1.0 :date:`2009-04-24 11:28 A.M CET` :author:askh@opera.com
  48. --------------------------------------------------------------
  49. * Initial release