Skip to content

Commit 63ebaea

Browse files
committed
bump version to 2021.10.0
1 parent 1670cf8 commit 63ebaea

File tree

2 files changed

+66
-2
lines changed

2 files changed

+66
-2
lines changed

docs/source/changelog.rst

+65-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,68 @@
11
Changelog
22
=========
33

4+
2021.10.0
5+
---------
6+
7+
Released on October 22, 2021
8+
9+
- Ensure resumed flight tasks are still fetched (:pr:`5426`) `Florian Jetter`_
10+
- AMM high level documentation (:pr:`5456`) `crusaderky`_
11+
- Provide stack for suspended coro in test timeout (:pr:`5446`) `Florian Jetter`_
12+
- Handle ``UCXNotConnected`` error (:pr:`5449`) `Peter Andreas Entschev`_
13+
- Don't schedule tasks to paused workers (:pr:`5431`) `crusaderky`_
14+
- Use ``pip install .`` instead of calling ``setup.py`` (:pr:`5442`) `Matthias Bussonnier`_
15+
- Increase latency for stealing (:pr:`5390`) `Florian Jetter`_
16+
- Type annotations for ``Worker`` and ``gen_cluster`` (:pr:`5438`) `crusaderky`_
17+
- Ensure reconnecting workers do not loose required data (:pr:`5436`) `Florian Jetter`_
18+
- Mark ``test_gather_dep*`` as ``xfail`` (:pr:`5432`) `crusaderky`_
19+
- Remove ``zict``-related skips (:pr:`5429`) `James Bourbeau`_
20+
- Pass ``host`` through ``LocalCluster`` to workers (:pr:`5427`) `Jim Crist-Harif`_
21+
- Fixes ``async`` warnings in UCX tests (:pr:`5396`) `Peter Andreas Entschev`_
22+
- Resolve work stealing deadlock caused by race in ``move_task_confirm`` (:pr:`5379`) `Florian Jetter`_
23+
- Add scroll to dashboard dropdown (:pr:`5418`) `Jacob Tomlinson`_
24+
- Fix regression where unknown tasks were allowed to be stolen (:pr:`5392`) `Florian Jetter`_
25+
- Enable ``mypy`` in CI 2/2 (:pr:`5348`) `crusaderky`_
26+
- Rewrite ``test_client_timeout`` (:pr:`5397`) `crusaderky`_
27+
- Simple ``SSHCluster`` example (:pr:`5349`) `Ray Bell`_
28+
- Do not attempt to fetch keys which are no longer in flight (:pr:`5160`) `Florian Jetter`_
29+
- Revisit ``Scheduler.add_plugin`` / ``Scheduler.remove_plugin`` (:pr:`5394`) `crusaderky`_
30+
- Fix flaky ``test_WorkerPlugin_overwrite`` (:pr:`5398`) `crusaderky`_
31+
- Active Memory Manager to use bulk comms (:pr:`5357`) `crusaderky`_
32+
- Add coverage badge to ``README`` (:pr:`5382`) `James Bourbeau`_
33+
- Mark ``test_stress_creation_and_deletion`` as ``xfail`` (:pr:`5393`) `James Bourbeau`_
34+
- Mark ``test_worker_reconnects_mid_compute*`` tests as flaky (:pr:`5378`) `James Bourbeau`_
35+
- Use new Dask docs theme (:pr:`5391`) `Jacob Tomlinson`_
36+
- Remove ``pytest.mark.repeat`` from ``test_prometheus_collect_task_states`` (:pr:`5376`) `James Bourbeau`_
37+
- Log original exception upon compute failure (:pr:`5387`) `Florian Jetter`_
38+
- Add code coverage (:pr:`4670`) `James Bourbeau`_
39+
- Fix zombie worker tasks after missing transition (:pr:`5316`) `Florian Jetter`_
40+
- Add support for partial functions to ``iscoroutinefunction`` util (:pr:`5344`) `Michael Adkins`_
41+
- Mark ``distributed/tests/test_client.py::test_profile_server`` as flaky (:pr:`5375`) `James Bourbeau`_
42+
- Enable ``mypy`` in CI 1/2 (:pr:`5328`) `crusaderky`_
43+
- Ensure ``dask-worker`` and ``dask-scheduler`` pick up preload configuration values (:pr:`5365`) `James Bourbeau`_
44+
- Use ``dask-spec`` for ``SSHCluster`` (:pr:`5191`) `Charles Blackmon-Luca`_
45+
- Update ``_cluster_info`` dict in ``__init__`` (:pr:`5305`) `Jacob Tomlinson`_
46+
- Use Dask temporary file utility (:pr:`5361`) `James Bourbeau`_
47+
- Avoid deprecated random set sampling (:pr:`5360`) `James Bourbeau`_
48+
- Add check for unsupported NVML metrics (:pr:`5343`) `Charles Blackmon-Luca`_
49+
- Workers submit a reply to the scheduler if replica removal was rejected (:pr:`5356`) `Florian Jetter`_
50+
- Pickle exception and traceback immediately (:pr:`5338`) `Mads R. B. Kristensen`_
51+
- Reinstate: AMM ``ReduceReplicas`` to iterate only on replicated tasks (:pr:`5341`) `crusaderky`_
52+
- Sync worker status to the scheduler; new 'paused' status (:pr:`5330`) `crusaderky`_
53+
- Add pre-commit to environments (:pr:`5362`) `Ray Bell`_
54+
- Worker State Machine Refactor: clean up dead handlers (:pr:`5359`) `crusaderky`_
55+
- Bump ``RAPIDS_VER`` for gpuCI (:pr:`5358`) `Charles Blackmon-Luca`_
56+
- Generate Cython HTML annotations (:pr:`5321`) `crusaderky`_
57+
- Worker state machine refactor (:pr:`5046`) `Florian Jetter`_
58+
- ``fsspec`` and ``s3fs`` git tips are incompatible (:pr:`5346`) `crusaderky`_
59+
- Fix ``test_many_Progress`` and others (:pr:`5329`) `crusaderky`_
60+
- Run multiple AMMs in parallel (:pr:`5339`) `crusaderky`_
61+
- Enhance AMM docstrings (:pr:`5340`) `crusaderky`_
62+
- Run ``pyupgrade`` in CI (:pr:`5327`) `crusaderky`_
63+
- Fix typo in client side example ``foundations.rst`` (:pr:`5336`) `Genevieve Buckley`_
64+
65+
466
2021.09.1
567
---------
668

@@ -2662,4 +2724,6 @@ significantly without many new features.
26622724
.. _`Bryan Van de Ven`: https://github.com/bryevdv
26632725
.. _`David Chudzicki`: https://github.com/dchudz
26642726
.. _`Walt Woods`: https://github.com/wwoods
2665-
.. _`Tom Forbes`: https://github.com/orf
2727+
.. _`Tom Forbes`: https://github.com/orf
2728+
.. _`Michael Adkins`: https://github.com/madkinsz
2729+
.. _`Genevieve Buckley`: https://github.com/GenevieveBuckley

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
click >= 6.6
22
cloudpickle >= 1.5.0
3-
dask == 2021.09.1
3+
dask == 2021.10.0
44
jinja2
55
msgpack >= 0.6.0
66
psutil >= 5.0

0 commit comments

Comments
 (0)