Skip to content
This repository has been archived by the owner on Nov 30, 2021. It is now read-only.

Latest commit

 

History

History
13 lines (12 loc) · 617 Bytes

CHANGELOG.md

File metadata and controls

13 lines (12 loc) · 617 Bytes

Change log

3.0.0 [Unreleased]

  • Removed support for PHP 5.3.
  • celery-php now uses a PSR-4 compliant namespace, Celery. To migrate to the new version, change code from new Celery(…) to new \Celery\Celery(…).
  • Now supports php-amqplib/php-amqplib for the amqplib backend as videlalvaro/php-amqplib is abandoned.
  • Fix crash with the ampqlib backend when Celery has not yet created the results exchange.
  • The Celery constructor no longer accepts the argument persistent_messages. It was previously unused.
  • celery-php now uses Celery task protocol version 2 and requires Celery 4.0+.