From 705913e9b9cee6ffe2a348f67402ab2a8484922ccd1b3231d66ec155ccc96c3f Mon Sep 17 00:00:00 2001 From: Alexandre Rogoski Date: Tue, 10 Jul 2012 22:46:07 +0000 Subject: [PATCH] - 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 --- celery-3.0.0.tar.bz2 | 3 --- celery-3.0.1.tar.bz2 | 3 +++ python-celery.changes | 37 +++++++++++++++++++++++++++++++++++++ python-celery.spec | 4 ++-- 4 files changed, 42 insertions(+), 5 deletions(-) delete mode 100644 celery-3.0.0.tar.bz2 create mode 100644 celery-3.0.1.tar.bz2 diff --git a/celery-3.0.0.tar.bz2 b/celery-3.0.0.tar.bz2 deleted file mode 100644 index e073705..0000000 --- a/celery-3.0.0.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5a6523cb96f6a14f8983b8719324bb50c675404f820905ef83fd66df7c0ecc48 -size 870736 diff --git a/celery-3.0.1.tar.bz2 b/celery-3.0.1.tar.bz2 new file mode 100644 index 0000000..afafaa5 --- /dev/null +++ b/celery-3.0.1.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8bad0657250f8c82f31aadbd29223b78196abac3cba16b548bb681b98ffe386 +size 872457 diff --git a/python-celery.changes b/python-celery.changes index 46f7d53..d7d6ca7 100644 --- a/python-celery.changes +++ b/python-celery.changes @@ -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 diff --git a/python-celery.spec b/python-celery.spec index 5b1c5cb..70958df 100644 --- a/python-celery.spec +++ b/python-celery.spec @@ -17,7 +17,7 @@ Name: python-celery -Version: 3.0.0 +Version: 3.0.1 Release: 0 Url: http://celeryproject.org Summary: Distributed Task Queue @@ -43,7 +43,7 @@ BuildRequires: python-ordereddict BuildRequires: python-unittest2 # See changes entry from "Jun 6 17:31:29 UTC 2012": # TODO/FIXME: Drop this as as soon as possible, d:l:p already has a newer kombu, -Conflicts: python-kombu >= 2.2.0 +Conflicts: python-kombu >= 2.2.5 Requires: python-importlib Requires: python-ordereddict %endif