Changelog 3.0 KB

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