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
- :py:meth:`DataTree.to_netcdf` can now write to a file-like object, or return bytes if called without a filepath. (:issue:`10570`)
17
20
By `Matthew Willson <https://github.com/mjwillson>`_.
@@ -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
~~~~~~~~~~~~
@@ -60,6 +70,10 @@ Bug fixes
60
70
Documentation
61
71
~~~~~~~~~~~~~
62
72
73
+
- 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`).
74
+
By `Kai Mühlbauer <https://github.com/kmuehlbauer>`_.
0 commit comments