Changelog 2.4 KB

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