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
+14Lines changed: 14 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,6 +12,9 @@ v2025.07.2 (unreleased)
12
12
13
13
New Features
14
14
~~~~~~~~~~~~
15
+
- Added :py:meth:`DataTree.prune` method to remove empty nodes while preserving tree structure.
16
+
Useful for cleaning up DataTree after time-based filtering operations (:issue:`10590`, :pull:`10598`).
17
+
By `Alfonso Ladino <https://github.com/aladinor>`_.
15
18
16
19
- Added new asynchronous loading methods :py:meth:`Dataset.load_async`, :py:meth:`DataArray.load_async`, :py:meth:`Variable.load_async`.
17
20
Note that users are expected to limit concurrency themselves - xarray does not internally limit concurrency in any way.
@@ -24,6 +27,13 @@ New Features
24
27
Breaking changes
25
28
~~~~~~~~~~~~~~~~
26
29
30
+
- When writing to NetCDF files with groups, Xarray no longer redefines dimensions
31
+
that have the same size in parent groups (:issue:`10241`). This conforms with
32
+
`CF Conventions for group scrope <https://cfconventions.org/cf-conventions/cf-conventions.html#_scope>`_
33
+
but may require adjustments for code that consumes NetCDF files produced by
34
+
Xarray.
35
+
By `Stephan Hoyer <https://github.com/shoyer>`_.
36
+
27
37
28
38
Deprecations
29
39
~~~~~~~~~~~~
@@ -58,6 +68,10 @@ Bug fixes
58
68
Documentation
59
69
~~~~~~~~~~~~~
60
70
71
+
- Clarify lazy behaviour and eager loading for ``chunks=None`` in :py:func:`~xarray.open_dataset`, :py:func:`~xarray.open_dataarray`, :py:func:`~xarray.open_datatree`, :py:func:`~xarray.open_groups` and :py:func:`~xarray.open_zarr` (:issue:`10612`, :pull:`10627`).
72
+
By `Kai Mühlbauer <https://github.com/kmuehlbauer>`_.
0 commit comments