Skip to content

Commit 0b52650

Browse files
committed
Version 2025.3.0
1 parent cc25aff commit 0b52650

File tree

2 files changed

+73
-1
lines changed

2 files changed

+73
-1
lines changed

docs/source/changelog.rst

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,74 @@ is automatically enabled when ``allow_rechunk=True`` is set.
5959
:align: center
6060
:alt: Individual chunks are now roughly the same size
6161

62+
.. dropdown:: Additional changes
63+
64+
- Fix dataset info cache assignment (:pr:`11840`) `Florian Jetter`_
65+
- Expr ``setattr`` (:pr:`11836`) `Florian Jetter`_
66+
- Follow up to expression tokenization caching (:pr:`11837`) `Florian Jetter`_
67+
- Consolidate ``getattr`` for expr classes (:pr:`11835`) `Florian Jetter`_
68+
- Reduce pickle size of ``ReadParquet`` expression (:pr:`11797`) `Florian Jetter`_
69+
- ``arange`` loses precision on ``~2**63`` (:pr:`11801`) `Guido Imperiale`_
70+
- Remove ``numbagg`` from upstream build (:pr:`11821`) `Patrick Hoefler`_
71+
- Dispatch to ``numbagg`` for ``nanmedian`` and ``nanquantile`` (:pr:`11817`) `Patrick Hoefler`_
72+
- Make missing ``meta`` warning more ergonomic (:pr:`11814`) `Patrick Hoefler`_
73+
- Remove ``name`` doc from ``from_pandas`` (:pr:`11812`) `Patrick Hoefler`_
74+
- Implement an Array Scalar (:pr:`11810`) `Patrick Hoefler`_
75+
- Added ``to_orc`` to DataFrame API (:pr:`11807`) `Tom Augspurger`_
76+
- Implement reverse indexing for DataFrames (:pr:`11803`) `Patrick Hoefler`_
77+
- Add lazy ``to_pandas_dispatch`` registration for ``cudf`` (:pr:`11799`) `Richard (Rick) Zamora`_
78+
- Fix missing imports in array-expr (:pr:`11796`) `Florian Jetter`_
79+
- Cache tokens on expressions and restore after pickle roundtrip (:pr:`11791`) `Florian Jetter`_
80+
- Use random dashboard ports for ``LocalCluster`` in distributed tests (:pr:`11795`) `Florian Jetter`_
81+
- Implement slicing for array-expr (:pr:`11783`) `Patrick Hoefler`_
82+
- Never use an asynchronous ``Client`` when calling top level compute function (:pr:`11790`) `Florian Jetter`_
83+
- Refactor import tests (:pr:`11794`) `Florian Jetter`_
84+
- Migrate ``base.unpack_collections`` to ``Task`` class (:pr:`11793`) `Florian Jetter`_
85+
- Ensure ``map_blocks`` generates unique tokens (:pr:`11792`) `Florian Jetter`_
86+
- Speed up ``normalize_pickle`` by 50 percent (:pr:`11788`) `Florian Jetter`_
87+
- Fix divisions calculation with duplicates (:pr:`11787`) `Patrick Hoefler`_
88+
- Fix assign align for duplicated divisions (:pr:`11786`) `Patrick Hoefler`_
89+
- Ensure concat optimize project does not raise (:pr:`11784`) `Florian Jetter`_
90+
- Add array-expr from_array (:pr:`11772`) `Patrick Hoefler`_
91+
- Keep chunksizes consistent in ``apply_gufunc`` (:pr:`11683`) `Patrick Hoefler`_
92+
- Test ``dask.dataframe.__all__`` (:pr:`11782`) `Philipp A.`_
93+
- Add ``__all__`` to ``dask.bag`` (:pr:`11781`) `Philipp A.`_
94+
- Add test for ``dask.array.__all__`` (:pr:`11780`) `Philipp A.`_
95+
- Bump ``JamesIves/github-pages-deploy-action`` from 4.7.2 to 4.7.3 (:pr:`11777`)
96+
- Export ``dask.array`` members (:pr:`11779`) `Philipp A.`_
97+
- Fix ``sorted_divisions_locations`` with duplicates (:pr:`11773`) `Tom Augspurger`_
98+
- Fix small typo in ``best-practices.rst`` (:pr:`11775`) `Sergey Kolesnikov`_
99+
- Allow unknown chunks in ``blockwise`` ``adjust_chunks`` (:pr:`11769`) `Lindsey Gray`_
100+
- Fix crash in ``asarray(..., like=...)`` vs. ``scipy.sparse`` objects (:pr:`11755`) `Guido Imperiale`_
101+
- Remove flaky optional dependency (:pr:`11771`) `Tom Augspurger`_
102+
- Add support for scipy sparray (:pr:`11750`) `Philipp A.`_
103+
- Added ``flaky`` to tests extra (:pr:`11770`) `Tom Augspurger`_
104+
- Ensure divisions are plain scalars (:pr:`11767`) `Tom Augspurger`_
105+
- Remove divisions code duplication (:pr:`11764`) `Florian Jetter`_
106+
- Ensure divisions not diverging from ``npartitions`` in Merge (:pr:`11762`) `Florian Jetter`_
107+
- Skip ``test_visualize_int_overflow`` on windows (:pr:`11761`) `Florian Jetter`_
108+
- Reduce pickle size for tasks (:pr:`11687`) `Florian Jetter`_
109+
- Implement ``unify_chunks`` and Rechunk (:pr:`11692`) `Patrick Hoefler`_
110+
- Fix expression getitem to avoid alignment (:pr:`11760`) `Patrick Hoefler`_
111+
- ``arange(..., like=x)`` embeds the graph of x (:pr:`11754`) `Guido Imperiale`_
112+
- Simplify ``assert_divisions`` (:pr:`11745`) `Florian Jetter`_
113+
- Fix Projection logic for Series objects (:pr:`11747`) `Patrick Hoefler`_
114+
- Remove bytes as keys (:pr:`11757`) `Florian Jetter`_
115+
- Ensure ``map_partitions`` returns Series object if function returns scalar (:pr:`11756`) `Florian Jetter`_
116+
- Don't upload env twice (:pr:`11748`) `Patrick Hoefler`_
117+
118+
- Fix badges in readme (:pr-distributed:`9029`) `Florian Jetter`_
119+
- Properly forward cancellation reason (:pr-distributed:`9028`) `Florian Jetter`_
120+
- Fix ``bokeh`` circle (:pr-distributed:`9026`) `Florian Jetter`_
121+
- Ensure ``FileInfo`` can be serialized (:pr-distributed:`9025`) `Florian Jetter`_
122+
- Add ipykernel to skipped modules in code sampling (:pr-distributed:`9022`) `Matthew Rocklin`_
123+
- SpecCluster: add option to *not* shut down the scheduler when the cluster is closed (:pr-distributed:`9021`) `Taylor Braun-Jones`_
124+
- Fix CI by using ``client.persist(collection)`` instead of ``collection.persist()`` (:pr-distributed:`9020`) `Hendrik Makait`_
125+
- Add redirect from prefix root to status (:pr-distributed:`9015`) `Isaac`_
126+
- Bump ``JamesIves/github-pages-deploy-action`` from 4.7.2 to 4.7.3 (:pr-distributed:`9018`)
127+
- Remove bytes keys from tests (:pr-distributed:`9017`) `Jacob Tomlinson`_
128+
129+
62130
.. _v2025.2.0:
63131

64132
2025.2.0
@@ -9325,3 +9393,7 @@ Other
93259393
.. _`dchudz`: https://github.com/dchudz
93269394
.. _`Guido Imperiale`: https://github.com/crusaderky
93279395
.. _`Alexander`: https://github.com/SalikovAlex
9396+
.. _`Philipp A.`: https://github.com/flying-sheep
9397+
.. _`Sergey Kolesnikov`: https://github.com/SCORE1387
9398+
.. _`Taylor Braun-Jones`: https://github.com/nocnokneo
9399+
.. _`Isaac`: https://github.com/icykip

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ dataframe = [
5555
"pandas >= 2.0",
5656
"pyarrow>=14.0.1",
5757
]
58-
distributed = ["distributed == 2025.2.0"]
58+
distributed = ["distributed == 2025.3.0"]
5959
diagnostics = [
6060
"bokeh >= 3.1.0",
6161
"jinja2 >= 2.10.3",

0 commit comments

Comments
 (0)