Changelog 2.0 KB

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