forked from pool/python-celery
- Update to 3.0.1:
- Now depends on kombu 2.2.5
- inspect now supports limit argument::
myapp.control.inspect(limit=1).ping()
- Beat: now works with timezone aware datetime's.
- Task classes inheriting from celery import Task
mistakingly enabled accept_magic_kwargs.
- Fixed bug in inspect scheduled (Issue #829).
- Beat: Now resets the schedule to upgrade to UTC.
- The celery worker command now works with eventlet/gevent.
Previously it would not patch the environment early enough.
- The celery command now supports extension commands
using setuptools entry-points.
Libraries can add additional commands to the celery
command by adding an entry-point like::
setup(
entry_points=[
'celery.commands': [
'foo = my.module:Command',
],
],
...)
The command must then support the interface of
celery.bin.base.Command.
- contrib.migrate: New utilities to move tasks from one queue to another.
- celery.contrib.migrate.move_tasks
- celery.contrib.migrate.move_task_by_id
- The task-sent event now contains exchange and routing_key
fields.
- Fixes bug with installing on Python 3.
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-celery?expand=0&rev=61
This commit is contained in:
committed by
Git OBS Bridge
parent
919266b9d1
commit
705913e9b9
@@ -1,3 +1,40 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 10 22:43:17 UTC 2012 - alexandre@exatati.com.br
|
||||
|
||||
- Update to 3.0.1:
|
||||
- Now depends on kombu 2.2.5
|
||||
- inspect now supports limit argument::
|
||||
myapp.control.inspect(limit=1).ping()
|
||||
- Beat: now works with timezone aware datetime's.
|
||||
- Task classes inheriting from celery import Task
|
||||
mistakingly enabled accept_magic_kwargs.
|
||||
- Fixed bug in inspect scheduled (Issue #829).
|
||||
- Beat: Now resets the schedule to upgrade to UTC.
|
||||
- The celery worker command now works with eventlet/gevent.
|
||||
Previously it would not patch the environment early enough.
|
||||
- The celery command now supports extension commands
|
||||
using setuptools entry-points.
|
||||
Libraries can add additional commands to the celery
|
||||
command by adding an entry-point like::
|
||||
|
||||
setup(
|
||||
entry_points=[
|
||||
'celery.commands': [
|
||||
'foo = my.module:Command',
|
||||
],
|
||||
],
|
||||
...)
|
||||
|
||||
The command must then support the interface of
|
||||
celery.bin.base.Command.
|
||||
- contrib.migrate: New utilities to move tasks from one queue to another.
|
||||
- celery.contrib.migrate.move_tasks
|
||||
- celery.contrib.migrate.move_task_by_id
|
||||
- The task-sent event now contains exchange and routing_key
|
||||
fields.
|
||||
- Fixes bug with installing on Python 3.
|
||||
Fix contributed by Jed Smith.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Jul 7 14:05:06 UTC 2012 - alexandre@exatati.com.br
|
||||
|
||||
|
||||
Reference in New Issue
Block a user