Changelog 2.2 KB

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