Changelog 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. .. _changelog:
  2. ================
  3. Change history
  4. ================
  5. This document contains change notes for bugfix releases in the 3.1.x series
  6. (Cipater), please see :ref:`whatsnew-3.1` for an overview of what's
  7. new in Celery 3.1.
  8. .. _version-3.1.4:
  9. 3.1.4
  10. =====
  11. :release-date: 2013-11-15 11:40 P.M UTC
  12. :release-by: Ask Solem
  13. - Now depends on :mod:`kombu` 3.0.5
  14. - Now depends on :mod:`billiard` 3.3.0.7
  15. - Worker accidentally set a default socket timeout of 5 seconds.
  16. - Django: Fixup now sets the default app so that threads will use
  17. the same app instance (e.g. for manage.py runserver).
  18. - Worker: Fixed Unicode error crash at startup experienced by some users.
  19. - Calling ``.apply_async`` on an empty chain now works again (Issue #1650).
  20. - The ``celery multi show`` command now generates the same arguments
  21. as the start command does.
  22. - The ``--app`` argument could end up using a module object instead
  23. of an app instance (with a resulting crash).
  24. - Fixed a syntax error problem in the celerybeat init script.
  25. Fix contributed by Vsevolod.
  26. - Tests now passing on PyPy 2.1 and 2.2.
  27. .. _version-3.1.3:
  28. 3.1.3
  29. =====
  30. :release-date: 2013-11-13 12:55 A.M UTC
  31. :release-by: Ask Solem
  32. - Fixed compatibility problem with Python 2.7.0 - 2.7.5 (Issue #1637)
  33. ``unpack_from`` started supporting ``memoryview`` arguments
  34. in Python 2.7.6.
  35. - Worker: :option:`-B` argument accidentally closed files used
  36. for logging.
  37. - Task decorated tasks now keep their docstring (Issue #1636)
  38. .. _version-3.1.2:
  39. 3.1.2
  40. =====
  41. :release-date: 2013-11-12 08:00 P.M UTC
  42. :release-by: Ask Solem
  43. - Now depends on :mod:`billiard` 3.3.0.6
  44. - No longer needs the billiard C extension to be installed.
  45. - The worker silently ignored task errors.
  46. - Django: Fixed ``ImproperlyConfigured`` error raised
  47. when no database backend specified.
  48. Fix contributed by j0hnsmith
  49. - Prefork pool: Now using ``_multiprocessing.read`` with ``memoryview``
  50. if available.
  51. - ``close_open_fds`` now uses ``os.closerange`` if available.
  52. - ``get_fdmax`` now takes value from ``sysconfig`` if possible.
  53. .. _version-3.1.1:
  54. 3.1.1
  55. =====
  56. :release-date: 2013-11-11 06:30 P.M UTC
  57. :release-by: Ask Solem
  58. - Now depends on :mod:`billiard` 3.3.0.4.
  59. - Python 3: Fixed compatibility issues.
  60. - Windows: Accidentally showed warning that the billiard C extension
  61. was not installed (Issue #1630).
  62. - Django: Tutorial updated with a solution that sets a default
  63. :envvar:`DJANGO_SETTINGS_MODULE` so that it doesn't have to be typed
  64. in with the :program:`celery` command.
  65. Also fixed typos in the tutorial, and added the settings
  66. required to use the Django database backend.
  67. Thanks to Chris Ward, orarbel.
  68. - Django: Fixed a problem when using the Django settings in Django 1.6.
  69. - Django: Fixup should not be applied if the django loader is active.
  70. - Worker: Fixed attribute error for ``human_write_stats`` when using the
  71. compatibility prefork pool implementation.
  72. - Worker: Fixed compatibility with billiard without C extension.
  73. - Inspect.conf: Now supports a ``with_defaults`` argument.
  74. - Group.restore: The backend argument was not respected.
  75. .. _version-3.1.0:
  76. 3.1.0
  77. =======
  78. :release-date: 2013-11-09 11:00 P.M UTC
  79. :release-by: Ask Solem
  80. See :ref:`whatsnew-3.1`.