Changelog 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847
  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.11:
  9. 3.1.11
  10. ======
  11. :release-date: 2014-04-XX XX:XX X.X UTC
  12. :release-by: XXX
  13. - **MongoDB**: SSL configuration with non-MongoDB transport breaks MongoDB
  14. results backend (Issue #1973).
  15. Fix contributed by Brian Bouterse.
  16. .. _version-3.1.10:
  17. 3.1.10
  18. ======
  19. :release-date: 2014-03-22 09:40 P.M UTC
  20. :release-by: Ask Solem
  21. - **Requirements**:
  22. - Now depends on :ref:`Kombu 3.0.14 <kombu:version-3.0.14>`.
  23. - **Results**:
  24. Reliability improvements to the SQLAlchemy database backend. Previously the
  25. connection from the MainProcess was improperly shared with the workers.
  26. (Issue #1786)
  27. - **Redis:** Important note about events (Issue #1882).
  28. There is a new transport option for Redis that enables monitors
  29. to filter out unwanted events. Enabling this option in the workers
  30. will increase performance considerably:
  31. .. code-block:: python
  32. BROKER_TRANSPORT_OPTIONS = {'fanout_patterns': True}
  33. Enabling this option means that your workers will not be able to see
  34. workers with the option disabled (or is running an older version of
  35. Celery), so if you do enable it then make sure you do so on all
  36. nodes.
  37. See :ref:`redis-caveats-fanout-patterns`.
  38. This will be the default in Celery 3.2.
  39. - **Results**: The :class:`@AsyncResult` object now keeps a local cache
  40. of the final state of the task.
  41. This means that the global result cache can finally be disabled,
  42. and you can do so by setting :setting:`CELERY_MAX_CACHED_RESULTS` to
  43. :const:`-1`. The lifetime of the cache will then be bound to the
  44. lifetime of the result object, which will be the default behavior
  45. in Celery 3.2.
  46. - **Events**: The "Substantial drift" warning message is now logged once
  47. per node name only (Issue #1802).
  48. - **Worker**: Ability to use one log file per child process when using the
  49. prefork pool.
  50. This can be enabled by using the new ``%i`` and ``%I`` format specifiers
  51. for the log file name. See :ref:`worker-files-process-index`.
  52. - **Redis**: New experimental chord join implementation.
  53. This is an optimization for chords when using the Redis result backend,
  54. where the join operation is now considerably faster and using less
  55. resources than the previous strategy.
  56. The new option can be set in the result backend URL:
  57. CELERY_RESULT_BACKEND = 'redis://localhost?new_join=1'
  58. This must be enabled manually as it's incompatible
  59. with workers and clients not using it, so be sure to enable
  60. the option in all clients and workers if you decide to use it.
  61. - **Multi**: With ``-opt:index`` (e.g. :option:`-c:1`) the index now always refers
  62. to the position of a node in the argument list.
  63. This means that referring to a number will work when specifying a list
  64. of node names and not just for a number range:
  65. .. code-block:: bash
  66. celery multi start A B C D -c:1 4 -c:2-4 8
  67. In this example ``1`` refers to node A (as it's the first node in the
  68. list).
  69. - **Signals**: The sender argument to ``Signal.connect`` can now be a proxy
  70. object, which means that it can be used with the task decorator
  71. (Issue #1873).
  72. - **Task**: A regression caused the ``queue`` argument to ``Task.retry`` to be
  73. ignored (Issue #1892).
  74. - **App**: Fixed error message for :meth:`~@Celery.config_from_envvar`.
  75. Fix contributed by Dmitry Malinovsky.
  76. - **Canvas**: Chords can now contain a group of other chords (Issue #1921).
  77. - **Canvas**: Chords can now be combined when using the amqp result backend
  78. (a chord where the callback is also a chord).
  79. - **Canvas**: Calling ``result.get()`` for a chain task will now complete
  80. even if one of the tasks in the chain is ``ignore_result=True``
  81. (Issue #1905).
  82. - **Canvas**: Worker now also logs chord errors.
  83. - **Canvas**: A chord task raising an exception will now result in
  84. any errbacks (``link_error``) to the chord callback to also be called.
  85. - **Results**: Reliability improvements to the SQLAlchemy database backend
  86. (Issue #1786).
  87. Previously the connection from the ``MainProcess`` was improperly
  88. inherited by child processes.
  89. Fix contributed by Ionel Cristian Mărieș.
  90. - **Task**: Task callbacks and errbacks are now called using the group
  91. primitive.
  92. - **Task**: ``Task.apply`` now properly sets ``request.headers``
  93. (Issue #1874).
  94. - **Worker**: Fixed ``UnicodeEncodeError`` occuring when worker is started
  95. by `supervisord`.
  96. Fix contributed by Codeb Fan.
  97. - **Beat**: No longer attempts to upgrade a newly created database file
  98. (Issue #1923).
  99. - **Beat**: New setting :setting:``CELERYBEAT_SYNC_EVERY`` can be be used
  100. to control file sync by specifying the number of tasks to send between
  101. each sync.
  102. Contributed by Chris Clark.
  103. - **Commands**: :program:`celery inspect memdump` no longer crashes
  104. if the :mod:`psutil` module is not installed (Issue #1914).
  105. - **Worker**: Remote control commands now always accepts json serialized
  106. messages (Issue #1870).
  107. - **Worker**: Gossip will now drop any task related events it receives
  108. by mistake (Issue #1882).
  109. .. _version-3.1.9:
  110. 3.1.9
  111. =====
  112. :release-date: 2014-02-10 06:43 P.M UTC
  113. :release-by: Ask Solem
  114. - **Requirements**:
  115. - Now depends on :ref:`Kombu 3.0.12 <kombu:version-3.0.12>`.
  116. - **Prefork pool**: Better handling of exiting child processes.
  117. Fix contributed by Ionel Cristian Mărieș.
  118. - **Prefork pool**: Now makes sure all file descriptors are removed
  119. from the hub when a process is cleaned up.
  120. Fix contributed by Ionel Cristian Mărieș.
  121. - **New Sphinx extension**: for autodoc documentation of tasks:
  122. :mod:`celery.contrib.spinx` (Issue #1833).
  123. - **Django**: Now works with Django 1.7a1.
  124. - **Task**: Task.backend is now a property that forwards to ``app.backend``
  125. if no custom backend has been specified for the task (Issue #1821).
  126. - **Generic init scripts**: Fixed bug in stop command.
  127. Fix contributed by Rinat Shigapov.
  128. - **Generic init scripts**: Fixed compatibility with GNU :manpage:`stat`.
  129. Fix contributed by Paul Kilgo.
  130. - **Generic init scripts**: Fixed compatibility with the minimal
  131. :program:`dash` shell (Issue #1815).
  132. - **Commands**: The :program:`celery amqp basic.publish` command was not
  133. working properly.
  134. Fix contributed by Andrey Voronov.
  135. - **Commands**: Did no longer emit an error message if the pidfile exists
  136. and the process is still alive (Issue #1855).
  137. - **Commands**: Better error message for missing arguments to preload
  138. options (Issue #1860).
  139. - **Commands**: :program:`celery -h` did not work because of a bug in the
  140. argument parser (Issue #1849).
  141. - **Worker**: Improved error message for message decoding errors.
  142. - **Time**: Now properly parses the `Z` timezone specifier in ISO 8601 date
  143. strings.
  144. Fix contributed by Martin Davidsson.
  145. - **Worker**: Now uses the *negotiated* heartbeat value to calculate
  146. how often to run the heartbeat checks.
  147. - **Beat**: Fixed problem with beat hanging after the first schedule
  148. iteration (Issue #1822).
  149. Fix contributed by Roger Hu.
  150. - **Signals**: The header argument to :signal:`before_task_publish` is now
  151. always a dictionary instance so that signal handlers can add headers.
  152. - **Worker**: A list of message headers is now included in message related
  153. errors.
  154. .. _version-3.1.8:
  155. 3.1.8
  156. =====
  157. :release-date: 2014-01-17 10:45 P.M UTC
  158. :release-by: Ask Solem
  159. - **Requirements**:
  160. - Now depends on :ref:`Kombu 3.0.10 <kombu:version-3.0.10>`.
  161. - Now depends on `billiard 3.3.0.14`_.
  162. .. _`billiard 3.3.0.14`:
  163. https://github.com/celery/billiard/blob/master/CHANGES.txt
  164. - **Worker**: The event loop was not properly reinitialized at consumer restart
  165. which would force the worker to continue with a closed ``epoll`` instance on
  166. Linux, resulting in a crash.
  167. - **Events:** Fixed issue with both heartbeats and task events that could
  168. result in the data not being kept in sorted order.
  169. As a result this would force the worker to log "heartbeat missed"
  170. events even though the remote node was sending heartbeats in a timely manner.
  171. - **Results:** The pickle serializer no longer converts group results to tuples,
  172. and will keep the original type (*Issue #1750*).
  173. - **Results:** ``ResultSet.iterate`` is now pending deprecation.
  174. The method will be deprecated in version 3.2 and removed in version 3.3.
  175. Use ``result.get(callback=)`` (or ``result.iter_native()`` where available)
  176. instead.
  177. - **Worker**\|eventlet/gevent: A regression caused ``Ctrl+C`` to be ineffective
  178. for shutdown.
  179. - **Redis result backend:** Now using a pipeline to store state changes
  180. for improved performance.
  181. Contributed by Pepijn de Vos.
  182. - **Redis result backend:** Will now retry storing the result if disconnected.
  183. - **Worker**\|gossip: Fixed attribute error occurring when another node leaves.
  184. Fix contributed by Brodie Rao.
  185. - **Generic init scripts:** Now runs a check at startup to verify
  186. that any configuration scripts are owned by root and that they
  187. are not world/group writeable.
  188. The init script configuration is a shell script executed by root,
  189. so this is a preventive measure to ensure that users do not
  190. leave this file vulnerable to changes by unprivileged users.
  191. .. note::
  192. Note that upgrading celery will not update the init scripts,
  193. instead you need to manually copy the improved versions from the
  194. source distribution:
  195. https://github.com/celery/celery/tree/3.1/extra/generic-init.d
  196. - **Commands**: The :program:`celery purge` command now warns that the operation
  197. will delete all tasks and prompts the user for confirmation.
  198. A new :option:`-f` was added that can be used to disable
  199. interactive mode.
  200. - **Task**: ``.retry()`` did not raise the value provided in the ``exc`` argument
  201. when called outside of an error context (*Issue #1755*).
  202. - **Commands:** The :program:`celery multi` command did not forward command
  203. line configuration to the target workers.
  204. The change means that multi will forward the special ``--`` argument and
  205. configuration content at the end of the arguments line to the specified
  206. workers.
  207. Example using command-line configuration to set a broker heartbeat
  208. from :program:`celery multi`:
  209. .. code-block:: bash
  210. $ celery multi start 1 -c3 -- broker.heartbeat=30
  211. Fix contributed by Antoine Legrand.
  212. - **Canvas:** ``chain.apply_async()`` now properly forwards execution options.
  213. Fix contributed by Konstantin Podshumok.
  214. - **Redis result backend:** Now takes ``connection_pool`` argument that can be
  215. used to change the connection pool class/constructor.
  216. - **Worker:** Now truncates very long arguments and keyword arguments logged by
  217. the pool at debug severity.
  218. - **Worker:** The worker now closes all open files on :sig:`SIGHUP` (regression)
  219. (*Issue #1768*).
  220. Fix contributed by Brodie Rao
  221. - **Worker:** Will no longer accept remote control commands while the
  222. worker startup phase is incomplete (*Issue #1741*).
  223. - **Commands:** The output of the event dump utility
  224. (:program:`celery events -d`) can now be piped into other commands.
  225. - **Documentation:** The RabbitMQ installation instructions for OS X was
  226. updated to use modern homebrew practices.
  227. Contributed by Jon Chen.
  228. - **Commands:** The :program:`celery inspect conf` utility now works.
  229. - **Commands:** The :option:`-no-color` argument was not respected by
  230. all commands (*Issue #1799*).
  231. - **App:** Fixed rare bug with ``autodiscover_tasks()`` (*Issue #1797*).
  232. - **Distribution:** The sphinx docs will now always add the parent directory
  233. to path so that the current celery source code is used as a basis for
  234. API documentation (*Issue #1782*).
  235. - **Documentation:** Supervisord examples contained an extraneous '-' in a
  236. `--logfile` argument example.
  237. Fix contributed by Mohammad Almeer.
  238. .. _version-3.1.7:
  239. 3.1.7
  240. =====
  241. :release-date: 2013-12-17 06:00 P.M UTC
  242. :release-by: Ask Solem
  243. .. _v317-important:
  244. Important Notes
  245. ---------------
  246. Init script security improvements
  247. ---------------------------------
  248. Where the generic init scripts (for ``celeryd``, and ``celerybeat``) before
  249. delegated the responsibility of dropping privileges to the target application,
  250. it will now use ``su`` instead, so that the Python program is not trusted
  251. with superuser privileges.
  252. This is not in reaction to any known exploit, but it will
  253. limit the possibility of a privilege escalation bug being abused in the
  254. future.
  255. You have to upgrade the init scripts manually from this directory:
  256. https://github.com/celery/celery/tree/3.1/extra/generic-init.d
  257. AMQP result backend
  258. ~~~~~~~~~~~~~~~~~~~
  259. The 3.1 release accidentally left the amqp backend configured to be
  260. non-persistent by default.
  261. Upgrading from 3.0 would give a "not equivalent" error when attempting to
  262. set or retrieve results for a task. That is unless you manually set the
  263. persistence setting::
  264. CELERY_RESULT_PERSISTENT = True
  265. This version restores the previous value so if you already forced
  266. the upgrade by removing the existing exchange you must either
  267. keep the configuration by setting ``CELERY_RESULT_PERSISTENT = False``
  268. or delete the ``celeryresults`` exchange again.
  269. Synchronous subtasks
  270. ~~~~~~~~~~~~~~~~~~~~
  271. Tasks waiting for the result of a subtask will now emit
  272. a :exc:`RuntimeWarning` warning when using the prefork pool,
  273. and in 3.2 this will result in an exception being raised.
  274. It's not legal for tasks to block by waiting for subtasks
  275. as this is likely to lead to resource starvation and eventually
  276. deadlock when using the prefork pool (see also :ref:`task-synchronous-subtasks`).
  277. If you really know what you are doing you can avoid the warning (and
  278. the future exception being raised) by moving the operation in a whitelist
  279. block:
  280. .. code-block:: python
  281. from celery.result import allow_join_result
  282. @app.task
  283. def misbehaving():
  284. result = other_task.delay()
  285. with allow_join_result():
  286. result.get()
  287. Note also that if you wait for the result of a subtask in any form
  288. when using the prefork pool you must also disable the pool prefetching
  289. behavior with the worker :ref:`-Ofair option <prefork-pool-prefetch>`.
  290. .. _v317-fixes:
  291. Fixes
  292. -----
  293. - Now depends on :ref:`Kombu 3.0.8 <kombu:version-3.0.8>`.
  294. - Now depends on :mod:`billiard` 3.3.0.13
  295. - Events: Fixed compatibility with non-standard json libraries
  296. that sends float as :class:`decimal.Decimal` (Issue #1731)
  297. - Events: State worker objects now always defines attributes:
  298. ``active``, ``processed``, ``loadavg``, ``sw_ident``, ``sw_ver``
  299. and ``sw_sys``.
  300. - Worker: Now keeps count of the total number of tasks processed,
  301. not just by type (``all_active_count``).
  302. - Init scripts: Fixed problem with reading configuration file
  303. when the init script is symlinked to a runlevel (e.g. ``S02celeryd``).
  304. (Issue #1740).
  305. This also removed a rarely used feature where you can symlink the script
  306. to provide alternative configurations. You instead copy the script
  307. and give it a new name, but perhaps a better solution is to provide
  308. arguments to ``CELERYD_OPTS`` to separate them:
  309. .. code-block:: bash
  310. CELERYD_NODES="X1 X2 Y1 Y2"
  311. CELERYD_OPTS="-A:X1 x -A:X2 x -A:Y1 y -A:Y2 y"
  312. - Fallback chord unlock task is now always called after the chord header
  313. (Issue #1700).
  314. This means that the unlock task will not be started if there's
  315. an error sending the header.
  316. - Celery command: Fixed problem with arguments for some control commands.
  317. Fix contributed by Konstantin Podshumok.
  318. - Fixed bug in ``utcoffset`` where the offset when in DST would be
  319. completely wrong (Issue #1743).
  320. - Worker: Errors occurring while attempting to serialize the result of a
  321. task will now cause the task to be marked with failure and a
  322. :class:`kombu.exceptions.EncodingError` error.
  323. Fix contributed by Ionel Cristian Mărieș.
  324. - Worker with ``-B`` argument did not properly shut down the beat instance.
  325. - Worker: The ``%n`` and ``%h`` formats are now also supported by the
  326. :option:`--logfile`, :option:`--pidfile` and :option:`--statedb` arguments.
  327. Example:
  328. .. code-block:: bash
  329. $ celery -A proj worker -n foo@%h --logfile=%n.log --statedb=%n.db
  330. - Redis/Cache result backends: Will now timeout if keys evicted while trying
  331. to join a chord.
  332. - The fallbock unlock chord task now raises :exc:`Retry` so that the
  333. retry even is properly logged by the worker.
  334. - Multi: Will no longer apply Eventlet/gevent monkey patches (Issue #1717).
  335. - Redis result backend: Now supports UNIX sockets.
  336. Like the Redis broker transport the result backend now also supports
  337. using ``redis+socket:///tmp/redis.sock`` URLs.
  338. Contributed by Alcides Viamontes Esquivel.
  339. - Events: Events sent by clients was mistaken for worker related events
  340. (Issue #1714).
  341. For ``events.State`` the tasks now have a ``Task.client`` attribute
  342. that is set when a ``task-sent`` event is being received.
  343. Also, a clients logical clock is not in sync with the cluster so
  344. they live in a "time bubble". So for this reason monitors will no
  345. longer attempt to merge with the clock of an event sent by a client,
  346. instead it will fake the value by using the current clock with
  347. a skew of -1.
  348. - Prefork pool: The method used to find terminated processes was flawed
  349. in that it did not also take into account missing popen objects.
  350. - Canvas: ``group`` and ``chord`` now works with anon signatures as long
  351. as the group/chord object is associated with an app instance (Issue #1744).
  352. You can pass the app by using ``group(..., app=app)``.
  353. .. _version-3.1.6:
  354. 3.1.6
  355. =====
  356. :release-date: 2013-12-02 06:00 P.M UTC
  357. :release-by: Ask Solem
  358. - Now depends on :mod:`billiard` 3.3.0.10.
  359. - Now depends on :ref:`Kombu 3.0.7 <kombu:version-3.0.7>`.
  360. - Fixed problem where Mingle caused the worker to hang at startup
  361. (Issue #1686).
  362. - Beat: Would attempt to drop privileges twice (Issue #1708).
  363. - Windows: Fixed error with ``geteuid`` not being available (Issue #1676).
  364. - Tasks can now provide a list of expected error classes (Issue #1682).
  365. The list should only include errors that the task is expected to raise
  366. during normal operation::
  367. @task(throws=(KeyError, HttpNotFound))
  368. What happens when an exceptions is raised depends on the type of error:
  369. - Expected errors (included in ``Task.throws``)
  370. Will be logged using severity ``INFO``, and traceback is excluded.
  371. - Unexpected errors
  372. Will be logged using severity ``ERROR``, with traceback included.
  373. - Cache result backend now compatible with Python 3 (Issue #1697).
  374. - CentOS init script: Now compatible with sys-v style init symlinks.
  375. Fix contributed by Jonathan Jordan.
  376. - Events: Fixed problem when task name is not defined (Issue #1710).
  377. Fix contributed by Mher Movsisyan.
  378. - Task: Fixed unbound local errors (Issue #1684).
  379. Fix contributed by Markus Ullmann.
  380. - Canvas: Now unrolls groups with only one task (optimization) (Issue #1656).
  381. - Task: Fixed problem with eta and timezones.
  382. Fix contributed by Alexander Koval.
  383. - Django: Worker now performs model validation (Issue #1681).
  384. - Task decorator now emits less confusing errors when used with
  385. incorrect arguments (Issue #1692).
  386. - Task: New method ``Task.send_event`` can be used to send custom events
  387. to Flower and other monitors.
  388. - Fixed a compatibility issue with non-abstract task classes
  389. - Events from clients now uses new node name format (``gen<pid>@<hostname>``).
  390. - Fixed rare bug with Callable not being defined at interpreter shutdown
  391. (Issue #1678).
  392. Fix contributed by Nick Johnson.
  393. - Fixed Python 2.6 compatibility (Issue #1679).
  394. .. _version-3.1.5:
  395. 3.1.5
  396. =====
  397. :release-date: 2013-11-21 06:20 P.M UTC
  398. :release-by: Ask Solem
  399. - Now depends on :ref:`Kombu 3.0.6 <kombu:version-3.0.6>`.
  400. - Now depends on :mod:`billiard` 3.3.0.8
  401. - App: ``config_from_object`` is now lazy (Issue #1665).
  402. - App: ``autodiscover_tasks`` is now lazy.
  403. Django users should now wrap access to the settings object
  404. in a lambda::
  405. app.autodiscover_tasks(lambda: settings.INSTALLED_APPS)
  406. this ensures that the settings object is not prepared
  407. prematurely.
  408. - Fixed regression for ``--app`` argument experienced by
  409. some users (Issue #1653).
  410. - Worker: Now respects the ``--uid`` and ``--gid`` arguments
  411. even if ``--detach`` is not enabled.
  412. - Beat: Now respects the ``--uid`` and ``--gid`` arguments
  413. even if ``--detach`` is not enabled.
  414. - Python 3: Fixed unorderable error occuring with the worker ``-B``
  415. argument enabled.
  416. - ``celery.VERSION`` is now a named tuple.
  417. - ``maybe_signature(list)`` is now applied recursively (Issue #1645).
  418. - ``celery shell`` command: Fixed ``IPython.frontend`` deprecation warning.
  419. - The default app no longer includes the builtin fixups.
  420. This fixes a bug where ``celery multi`` would attempt
  421. to load the Django settings module before entering
  422. the target working directory.
  423. - The Django daemonization tutorial was changed.
  424. Users no longer have to explicitly export ``DJANGO_SETTINGS_MODULE``
  425. in :file:`/etc/default/celeryd` when the new project layout is used.
  426. - Redis result backend: expiry value can now be 0 (Issue #1661).
  427. - Censoring settings now accounts for non-string keys (Issue #1663).
  428. - App: New ``autofinalize`` option.
  429. Apps are automatically finalized when the task registry is accessed.
  430. You can now disable this behavior so that an exception is raised
  431. instead.
  432. Example:
  433. .. code-block:: python
  434. app = Celery(autofinalize=False)
  435. # raises RuntimeError
  436. tasks = app.tasks
  437. @app.task
  438. def add(x, y):
  439. return x + y
  440. # raises RuntimeError
  441. add.delay(2, 2)
  442. app.finalize()
  443. # no longer raises:
  444. tasks = app.tasks
  445. add.delay(2, 2)
  446. - The worker did not send monitoring events during shutdown.
  447. - Worker: Mingle and gossip is now automatically disabled when
  448. used with an unsupported transport (Issue #1664).
  449. - ``celery`` command: Preload options now supports
  450. the rare ``--opt value`` format (Issue #1668).
  451. - ``celery`` command: Accidentally removed options
  452. appearing before the subcommand, these are now moved to the end
  453. instead.
  454. - Worker now properly responds to ``inspect stats`` commands
  455. even if received before startup is complete (Issue #1659).
  456. - :signal:`task_postrun` is now sent within a finally block, to make
  457. sure the signal is always sent.
  458. - Beat: Fixed syntax error in string formatting.
  459. Contributed by nadad.
  460. - Fixed typos in the documentation.
  461. Fixes contributed by Loic Bistuer, sunfinite.
  462. - Nested chains now works properly when constructed using the
  463. ``chain`` type instead of the ``|`` operator (Issue #1656).
  464. .. _version-3.1.4:
  465. 3.1.4
  466. =====
  467. :release-date: 2013-11-15 11:40 P.M UTC
  468. :release-by: Ask Solem
  469. - Now depends on :ref:`Kombu 3.0.5 <kombu:version-3.0.5>`.
  470. - Now depends on :mod:`billiard` 3.3.0.7
  471. - Worker accidentally set a default socket timeout of 5 seconds.
  472. - Django: Fixup now sets the default app so that threads will use
  473. the same app instance (e.g. for manage.py runserver).
  474. - Worker: Fixed Unicode error crash at startup experienced by some users.
  475. - Calling ``.apply_async`` on an empty chain now works again (Issue #1650).
  476. - The ``celery multi show`` command now generates the same arguments
  477. as the start command does.
  478. - The ``--app`` argument could end up using a module object instead
  479. of an app instance (with a resulting crash).
  480. - Fixed a syntax error problem in the celerybeat init script.
  481. Fix contributed by Vsevolod.
  482. - Tests now passing on PyPy 2.1 and 2.2.
  483. .. _version-3.1.3:
  484. 3.1.3
  485. =====
  486. :release-date: 2013-11-13 00:55 A.M UTC
  487. :release-by: Ask Solem
  488. - Fixed compatibility problem with Python 2.7.0 - 2.7.5 (Issue #1637)
  489. ``unpack_from`` started supporting ``memoryview`` arguments
  490. in Python 2.7.6.
  491. - Worker: :option:`-B` argument accidentally closed files used
  492. for logging.
  493. - Task decorated tasks now keep their docstring (Issue #1636)
  494. .. _version-3.1.2:
  495. 3.1.2
  496. =====
  497. :release-date: 2013-11-12 08:00 P.M UTC
  498. :release-by: Ask Solem
  499. - Now depends on :mod:`billiard` 3.3.0.6
  500. - No longer needs the billiard C extension to be installed.
  501. - The worker silently ignored task errors.
  502. - Django: Fixed ``ImproperlyConfigured`` error raised
  503. when no database backend specified.
  504. Fix contributed by j0hnsmith
  505. - Prefork pool: Now using ``_multiprocessing.read`` with ``memoryview``
  506. if available.
  507. - ``close_open_fds`` now uses ``os.closerange`` if available.
  508. - ``get_fdmax`` now takes value from ``sysconfig`` if possible.
  509. .. _version-3.1.1:
  510. 3.1.1
  511. =====
  512. :release-date: 2013-11-11 06:30 P.M UTC
  513. :release-by: Ask Solem
  514. - Now depends on :mod:`billiard` 3.3.0.4.
  515. - Python 3: Fixed compatibility issues.
  516. - Windows: Accidentally showed warning that the billiard C extension
  517. was not installed (Issue #1630).
  518. - Django: Tutorial updated with a solution that sets a default
  519. :envvar:`DJANGO_SETTINGS_MODULE` so that it doesn't have to be typed
  520. in with the :program:`celery` command.
  521. Also fixed typos in the tutorial, and added the settings
  522. required to use the Django database backend.
  523. Thanks to Chris Ward, orarbel.
  524. - Django: Fixed a problem when using the Django settings in Django 1.6.
  525. - Django: Fixup should not be applied if the django loader is active.
  526. - Worker: Fixed attribute error for ``human_write_stats`` when using the
  527. compatibility prefork pool implementation.
  528. - Worker: Fixed compatibility with billiard without C extension.
  529. - Inspect.conf: Now supports a ``with_defaults`` argument.
  530. - Group.restore: The backend argument was not respected.
  531. .. _version-3.1.0:
  532. 3.1.0
  533. =======
  534. :release-date: 2013-11-09 11:00 P.M UTC
  535. :release-by: Ask Solem
  536. See :ref:`whatsnew-3.1`.