You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/whats-new.rst
+41-5Lines changed: 41 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,21 +14,20 @@ What's New
14
14
15
15
np.random.seed(123456)
16
16
17
-
.. _whats-new.2025.03.1:
17
+
.. _whats-new.2025.04.0:
18
18
19
-
v2025.03.1 (unreleased)
19
+
v2025.04.0 (unreleased)
20
20
-----------------------
21
21
22
22
New Features
23
23
~~~~~~~~~~~~
24
24
25
+
- Added `scipy-stubs <https://github.com/scipy/scipy-stubs>`_ to the ``xarray[types]`` dependencies.
26
+
By `Joren Hammudoglu <https://github.com/jorenham>`_.
25
27
26
28
Breaking changes
27
29
~~~~~~~~~~~~~~~~
28
30
29
-
- Explicitly forbid appending a :py:class:`~xarray.DataTree` to zarr using :py:meth:`~xarray.DataTree.to_zarr` with ``append_dim``, because the expected behaviour is currently undefined.
30
-
(:issue:`9858`, :pull:`10156`)
31
-
By `Tom Nicholas <https://github.com/TomNicholas>`_.
32
31
33
32
Deprecations
34
33
~~~~~~~~~~~~
@@ -45,6 +44,43 @@ Documentation
45
44
Internal Changes
46
45
~~~~~~~~~~~~~~~~
47
46
47
+
.. _whats-new.2025.03.1:
48
+
49
+
v2025.03.1 (Mar 30, 2025)
50
+
-------------------------
51
+
52
+
This release brings the ability to specify ``fill_value`` and ``write_empty_chunks`` for Zarr V3 stores, and a few bug fixes.
53
+
Thanks to the 10 contributors to this release:
54
+
Andrecho, Deepak Cherian, Ian Hunt-Isaak, Karl Krauth, Mathias Hauser, Maximilian Roos, Nick Hodgskin (🦎 Vecko), Spencer Clark, Tom Nicholas and wpbonelli.
55
+
56
+
New Features
57
+
~~~~~~~~~~~~
58
+
59
+
- Allow setting a ``fill_value`` for Zarr format 3 arrays. Specify ``fill_value`` in ``encoding`` as usual.
60
+
(:issue:`10064`). By `Deepak Cherian <https://github.com/dcherian>`_.
61
+
62
+
Breaking changes
63
+
~~~~~~~~~~~~~~~~
64
+
65
+
- Explicitly forbid appending a :py:class:`~xarray.DataTree` to zarr using :py:meth:`~xarray.DataTree.to_zarr` with ``append_dim``, because the expected behaviour is currently undefined.
66
+
(:issue:`9858`, :pull:`10156`)
67
+
By `Tom Nicholas <https://github.com/TomNicholas>`_.
68
+
69
+
Bug fixes
70
+
~~~~~~~~~
71
+
72
+
- Update the parameters of :py:meth:`~xarray.DataArray.to_zarr` to match :py:meth:`~xarray.Dataset.to_zarr`.
73
+
This fixes the issue where using the ``zarr_version`` parameter would raise a deprecation warning telling the user to use
74
+
a non-existent ``zarr_format`` parameter instead. (:issue:`10163`, :pull:`10164`)
75
+
By `Karl Krauth <https://github.com/Karl-Krauth>`_.
76
+
- :py:meth:`DataTree.sel` and :py:meth:`DataTree.isel` display the path of the first failed node again (:pull:`10154`).
77
+
By `Mathias Hauser <https://github.com/mathause>`_.
78
+
- Fix grouped and resampled ``first``, ``last`` with datetimes (:issue:`10169`, :pull:`10173`)
79
+
By `Deepak Cherian <https://github.com/dcherian>`_.
80
+
- FacetGrid plots now include units in their axis labels when available (:issue:`10184`, :pull:`10185`)
81
+
By `Andre Wendlinger <https://github.com/andrewendlinger>`_.
0 commit comments