Changelog 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. .. _changelog:
  2. ================
  3. Change history
  4. ================
  5. This document contains change notes for bugfix releases in
  6. the 4.0.x series (0today8), please see :ref:`whatsnew-4.0` for
  7. an overview of what's new in Celery 4.0.
  8. .. _version-4.0.0:
  9. 4.0.0
  10. =====
  11. :release-date: 2016-11-04 02:00 P.M PDT
  12. :release-by: Ask Solem
  13. See :ref:`whatsnew-4.0` (in :file:`docs/whatsnew-4.0.rst`).
  14. .. _version-4.0.0rc7:
  15. 4.0.0rc7
  16. ========
  17. :release-date: 2016-11-02 01:30 P.M PDT
  18. Important notes
  19. ---------------
  20. - Database result backend related setting names changed from
  21. ``sqlalchemy_*`` -> ``database_*``.
  22. The ``sqlalchemy_`` named settings won't work at all in this
  23. version so you need to rename them. This is a last minute change,
  24. and as they were not supported in 3.1 we will not be providing
  25. aliases.
  26. - ``chain(A, B, C)`` now works the same way as ``A | B | C``.
  27. This means calling ``chain()`` might not actually return a chain,
  28. it can return a group or any other type depending on how the
  29. workflow can be optimized.