15
0
forked from pool/python-celery

- Update to 3.0.12:

- Now depends on kombu 2.4.8
    - [Redis] New and improved fair queue cycle algorithm (Kevin McCarthy).
    - [Redis] Now uses a Redis-based mutex when restoring messages.
    - [Redis] Number of messages that can be restored in one interval is no
              longer limited (but can be set using the
              unacked_restore_limit
              transport option <BROKER_TRANSPORT_OPTIONS>.)
    - Heartbeat value can be specified in broker URLs (Mher Movsisyan).
    - Fixed problem with msgpack on Python 3 (Jasper Bryant-Greene).
  - Now depends on billiard 2.7.3.18
  - Celery can now be used with static analysis tools like PyDev/PyCharm/pylint
    etc.
  - Development documentation has moved to Read The Docs.
    The new URL is: http://docs.celeryproject.org/en/master
  - New CELERY_QUEUE_HA_POLICY setting used to set the default
    HA policy for queues when using RabbitMQ.
    New method Task.subtask_from_request returns a subtask using the current
    request.
  - Results get_many method did not respect timeout argument.
    Fix contributed by Remigiusz Modrzejewski
  - generic_init.d scripts now support setting CELERY_CREATE_DIRS to
    always create log and pid directories (Issue #1045).
    This can be set in your /etc/default/celeryd.
  - Fixed strange kombu import problem on Python 3.2 (Issue #1034).
  - Worker: ETA scheduler now uses millisecond precision (Issue #1040).
  - The --config argument to programs is now supported by all loaders.
  - The CASSANDRA_OPTIONS setting has now been documented.
    Contributed by Jared Biel.
  - Task methods celery.contrib.methods cannot be used with the old

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-celery?expand=0&rev=73
This commit is contained in:
Alexandre Rogoski
2012-11-06 18:12:55 +00:00
committed by Git OBS Bridge
parent eb8e3de37b
commit a8371afa35
4 changed files with 46 additions and 5 deletions

View File

@@ -1,3 +1,43 @@
-------------------------------------------------------------------
Tue Nov 6 18:00:40 UTC 2012 - alexandre@exatati.com.br
- Update to 3.0.12:
- Now depends on kombu 2.4.8
- [Redis] New and improved fair queue cycle algorithm (Kevin McCarthy).
- [Redis] Now uses a Redis-based mutex when restoring messages.
- [Redis] Number of messages that can be restored in one interval is no
longer limited (but can be set using the
unacked_restore_limit
transport option <BROKER_TRANSPORT_OPTIONS>.)
- Heartbeat value can be specified in broker URLs (Mher Movsisyan).
- Fixed problem with msgpack on Python 3 (Jasper Bryant-Greene).
- Now depends on billiard 2.7.3.18
- Celery can now be used with static analysis tools like PyDev/PyCharm/pylint
etc.
- Development documentation has moved to Read The Docs.
The new URL is: http://docs.celeryproject.org/en/master
- New CELERY_QUEUE_HA_POLICY setting used to set the default
HA policy for queues when using RabbitMQ.
New method Task.subtask_from_request returns a subtask using the current
request.
- Results get_many method did not respect timeout argument.
Fix contributed by Remigiusz Modrzejewski
- generic_init.d scripts now support setting CELERY_CREATE_DIRS to
always create log and pid directories (Issue #1045).
This can be set in your /etc/default/celeryd.
- Fixed strange kombu import problem on Python 3.2 (Issue #1034).
- Worker: ETA scheduler now uses millisecond precision (Issue #1040).
- The --config argument to programs is now supported by all loaders.
- The CASSANDRA_OPTIONS setting has now been documented.
Contributed by Jared Biel.
- Task methods celery.contrib.methods cannot be used with the old
task base class, the task decorator in that module now inherits from the new.
- An optimization was too eager and caused some logging messages to never emit.
- celery.contrib.batches now works again.
- Fixed missing whitespace in bdist_rpm requirements (Issue #1046).
- Event state's tasks_by_name applied limit before filtering by name.
Fix contributed by Alexander A. Sosnovskiy.
-------------------------------------------------------------------
Wed Sep 26 17:42:49 UTC 2012 - alexandre@exatati.com.br