瀏覽代碼

Bumps version to 3.1.17 and updates Changelog

Ask Solem 10 年之前
父節點
當前提交
35d4e0de19
共有 3 個文件被更改,包括 17 次插入2 次删除
  1. 15 0
      Changelog
  2. 1 1
      celery/__init__.py
  3. 1 1
      docs/includes/introduction.txt

+ 15 - 0
Changelog

@@ -26,8 +26,12 @@ new in Celery 3.1.
 
     - Now depends on :ref:`Kombu 3.0.24 <kombu:version-3.0.24>`.
 
+        Includes new Qpid transport.
+
     - Now depends on :mod:`billiard` 3.3.0.19.
 
+    - ``celery[librabbitmq]`` now depends on librabbitmq 1.6.1.
+
 - **Task**: The timing for ETA/countdown tasks were off after the example ``LocalTimezone``
   implementation in the Python documentation no longer works in Python 3.4.
   (Issue #2306).
@@ -45,6 +49,12 @@ new in Celery 3.1.
 - **Canvas**: chain and group now handles json serialized signatures
   (Issue #2076).
 
+- **Results**: ``.join_native()`` would accidentally treat the ``STARTED``
+  state as being ready (Issue #2326).
+
+    This could lead to the chord callback being called with invalid arguments
+    if using chords with the :setting:`CELERY_TRACK_STARTED` setting.
+
 - **Canvas**: The ``chord_size`` attribute is now set for all canvas primitives,
   making sure more combinations will work with the ``new_join`` optimization
   for Redis (Issue #2339).
@@ -65,6 +75,11 @@ new in Celery 3.1.
 
     Fix contributed by Gino Ledesma.
 
+- **Mongodb Result backend**: Pickling the backend instance will now include
+  the original url (Issue #2347).
+
+    Fix contributed by Sukrit Khera.
+
 - **Task**: Exception info was not properly set for tasks raising
   :exc:`~celery.exceptions.Reject` (Issue #2043).
 

+ 1 - 1
celery/__init__.py

@@ -14,7 +14,7 @@ version_info_t = namedtuple(
 )
 
 SERIES = 'Cipater'
-VERSION = version_info_t(3, 1, 16, '', '')
+VERSION = version_info_t(3, 1, 17, '', '')
 __version__ = '{0.major}.{0.minor}.{0.micro}{0.releaselevel}'.format(VERSION)
 __author__ = 'Ask Solem'
 __contact__ = 'ask@celeryproject.org'

+ 1 - 1
docs/includes/introduction.txt

@@ -1,4 +1,4 @@
-:Version: 3.1.16 (Cipater)
+:Version: 3.1.17 (Cipater)
 :Web: http://celeryproject.org/
 :Download: http://pypi.python.org/pypi/celery/
 :Source: http://github.com/celery/celery/