Changelog 2.2 KB

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