Changelog 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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.3:
  9. 3.1.3
  10. =====
  11. :release-date: 2013-11-13 12:31 A.M UTC
  12. - Fixed problem with ``unpack_from`` not supporting ``memoryview``
  13. (Issue #1637)
  14. This is first supported in the new Python 2.7.6 version,
  15. so we have now provided a workaround for earlier versions.
  16. - Worker: -B argument accidentally closed files used for logging.
  17. - Task decorated tasks now keep their docstring (Issue #1636)
  18. .. _version-3.1.2:
  19. 3.1.2
  20. =====
  21. :release-date: 2013-11-12 08:00 P.M UTC
  22. - Now depends on :mod:`billiard` 3.3.0.6
  23. - No longer needs the billiard C extension to be installed.
  24. - The worker silently ignored task errors.
  25. - Django: Fixed ``ImproperlyConfigured`` error raised
  26. when no database backend specified.
  27. Fix contributed by j0hnsmith
  28. - Prefork pool: Now using ``_multiprocessing.read`` with ``memoryview``
  29. if available.
  30. - ``close_open_fds`` now uses ``os.closerange`` if available.
  31. - ``get_fdmax`` now takes value from ``sysconfig`` if possible.
  32. .. _version-3.1.1:
  33. 3.1.1
  34. =====
  35. :release-date: 2013-11-11 06:30 P.M UTC
  36. - Now depends on :mod:`billiard` 3.3.0.4.
  37. - Python 3: Fixed compatibility issues.
  38. - Windows: Accidentally showed warning that the billiard C extension
  39. was not installed (Issue #1630).
  40. - Django: Tutorial updated with a solution that sets a default
  41. :envvar:`DJANGO_SETTINGS_MODULE` so that it doesn't have to be typed
  42. in with the :program:`celery` command.
  43. Also fixed typos in the tutorial, and added the settings
  44. required to use the Django database backend.
  45. Thanks to Chris Ward, orarbel.
  46. - Django: Fixed a problem when using the Django settings in Django 1.6.
  47. - Django: Fixup should not be applied if the django loader is active.
  48. - Worker: Fixed attribute error for ``human_write_stats`` when using the
  49. compatibility prefork pool implementation.
  50. - Worker: Fixed compatibility with billiard without C extension.
  51. - Inspect.conf: Now supports a ``with_defaults`` argument.
  52. - Group.restore: The backend argument was not respected.
  53. .. _version-3.1.0:
  54. 3.1.0
  55. =======
  56. :release-date: 2013-11-09 11:00 P.M UTC
  57. See :ref:`whatsnew-3.1`.