Changelog 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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.2:
  9. 3.1.2
  10. =====
  11. :release-date: 2013-11-12 08:00 P.M UTC
  12. - Now depends on :mod:`billiard` 3.3.0.6
  13. - No longer needs the billiard C extension to be installed.
  14. - The worker silently ignored task errors.
  15. - Django: Fixed ``ImproperlyConfigured`` error raised
  16. when no database backend specified.
  17. Fix contributed by j0hnsmith
  18. - Worker now raises :exc:`RuntimeError` if task calls ``result.get()``
  19. and the call will block.
  20. The call will not block if using the eventlet/gevent pools,
  21. so the error will not be raised there.
  22. - Prefork pool: Now using ``_multiprocessing.read`` with ``memoryview``
  23. if available.
  24. - ``close_open_fds`` now uses ``os.closerange`` if available.
  25. - ``get_fdmax`` now takes value from ``sysconfig`` if possible.
  26. .. _version-3.1.1:
  27. 3.1.1
  28. =====
  29. :release-date: 2013-11-11 06:30 P.M UTC
  30. - Now depends on :mod:`billiard` 3.3.0.4.
  31. - Python 3: Fixed compatibility issues.
  32. - Windows: Accidentally showed warning that the billiard C extension
  33. was not installed (Issue #1630).
  34. - Django: Tutorial updated with a solution that sets a default
  35. :envvar:`DJANGO_SETTINGS_MODULE` so that it doesn't have to be typed
  36. in with the :program:`celery` command.
  37. Also fixed typos in the tutorial, and added the settings
  38. required to use the Django database backend.
  39. Thanks to Chris Ward, orarbel.
  40. - Django: Fixed a problem when using the Django settings in Django 1.6.
  41. - Django: Fixup should not be applied if the django loader is active.
  42. - Worker: Fixed attribute error for ``human_write_stats`` when using the
  43. compatibility prefork pool implementation.
  44. - Worker: Fixed compatibility with billiard without C extension.
  45. - Inspect.conf: Now supports a ``with_defaults`` argument.
  46. - Group.restore: The backend argument was not respected.
  47. .. _version-3.1.0:
  48. 3.1.0
  49. =======
  50. :release-date: 2013-11-09 11:00 P.M UTC
  51. See :ref:`whatsnew-3.1`.