Changelog 2.0 KB

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