whatsnew-3.2.rst 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. .. _whatsnew-3.1:
  2. ===========================================
  3. What's new in Celery 3.2 (TBA)
  4. ===========================================
  5. :Author: Ask Solem (ask at celeryproject.org)
  6. .. sidebar:: Change history
  7. What's new documents describe the changes in major versions,
  8. we also have a :ref:`changelog` that lists the changes in bugfix
  9. releases (0.0.x), while older series are archived under the :ref:`history`
  10. section.
  11. Celery is a simple, flexible and reliable distributed system to
  12. process vast amounts of messages, while providing operations with
  13. the tools required to maintain such a system.
  14. It's a task queue with focus on real-time processing, while also
  15. supporting task scheduling.
  16. Celery has a large and diverse community of users and contributors,
  17. you should come join us :ref:`on IRC <irc-channel>`
  18. or :ref:`our mailing-list <mailing-list>`.
  19. To read more about Celery you should go read the :ref:`introduction <intro>`.
  20. While this version is backward compatible with previous versions
  21. it's important that you read the following section.
  22. This version is officially supported on CPython 2.6, 2.7 and 3.3,
  23. and also supported on PyPy.
  24. .. _`website`: http://celeryproject.org/
  25. .. topic:: Table of Contents
  26. Make sure you read the important notes before upgrading to this version.
  27. .. contents::
  28. :local:
  29. :depth: 2
  30. Preface
  31. =======
  32. .. _v320-important:
  33. Important Notes
  34. ===============
  35. Dropped support for Python 2.6
  36. ------------------------------
  37. Celery now requires Python 2.7 or later.
  38. JSON is now the default serializer
  39. ----------------------------------
  40. .. _v320-news:
  41. News
  42. ====
  43. Item 1
  44. ------
  45. Bla bla
  46. - blah blah
  47. In Other News
  48. -------------
  49. - Now depends on :ref:`Kombu 3.1 <kombu:version-3.1.0>`.
  50. - Now depends on :mod:`billiard` version 3.4.
  51. .. _v320-removals:
  52. Scheduled Removals
  53. ==================
  54. .. _v320-deprecations:
  55. Deprecations
  56. ============
  57. See the :ref:`deprecation-timeline`.
  58. .. _v320-fixes:
  59. Fixes
  60. =====
  61. .. _v320-internal:
  62. Internal changes
  63. ================
  64. - Module ``celery.worker.job`` has been renamed to :mod:`celery.worker.request`.