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: docs/release-notes.rst
+39
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,45 @@ Release notes
3
3
4
4
.. towncrier release notes start
5
5
6
+
3.0.3 (2025-02-14)
7
+
------------------
8
+
9
+
Features
10
+
~~~~~~~~
11
+
12
+
- Improves performance of FsspecStore.delete_dir for remote filesystems supporting concurrent/batched deletes, e.g., s3fs. (:issue:`2661`)
13
+
- Added :meth:`zarr.config.enable_gpu` to update Zarr's configuration to use GPUs. (:issue:`2751`)
14
+
- Avoid reading chunks during writes where possible. :issue:`757` (:issue:`2784`)
15
+
- :py:class:`LocalStore` learned to ``delete_dir``. This makes array and group deletes more efficient. (:issue:`2804`)
16
+
- Add `zarr.testing.strategies.array_metadata` to generate ArrayV2Metadata and ArrayV3Metadata instances. (:issue:`2813`)
17
+
- Add arbitrary `shards` to Hypothesis strategy for generating arrays. (:issue:`2822`)
18
+
19
+
20
+
Bugfixes
21
+
~~~~~~~~
22
+
23
+
- Fixed bug with Zarr using device memory, instead of host memory, for storing metadata when using GPUs. (:issue:`2751`)
24
+
- The array returned by ``zarr.empty`` and an empty ``zarr.core.buffer.cpu.NDBuffer`` will now be filled with the
25
+
specified fill value, or with zeros if no fill value is provided.
26
+
This fixes a bug where Zarr format 2 data with no fill value was written with un-predictable chunk sizes. (:issue:`2755`)
27
+
- Fix zip-store path checking for stores with directories listed as files. (:issue:`2758`)
28
+
- Use removeprefix rather than replace when removing filename prefixes in `FsspecStore.list` (:issue:`2778`)
29
+
- Enable automatic removal of `needs release notes` with labeler action (:issue:`2781`)
30
+
- Use the proper label config (:issue:`2785`)
31
+
- Alters the behavior of ``create_array`` to ensure that any groups implied by the array's name are created if they do not already exist. Also simplifies the type signature for any function that takes an ArrayConfig-like object. (:issue:`2795`)
32
+
- Enitialise empty chunks to the default fill value during writing and add default fill values for datetime, timedelta, structured, and other (void* fixed size) data types (:issue:`2799`)
33
+
- Ensure utf8 compliant strings are used to construct numpy arrays in property-based tests (:issue:`2801`)
34
+
- Fix pickling for ZipStore (:issue:`2807`)
35
+
- Update numcodecs to not overwrite codec configuration ever. Closes :issue:`2800`. (:issue:`2811`)
36
+
- Fix fancy indexing (e.g. arr[5, [0, 1]]) with the sharding codec (:issue:`2817`)
37
+
38
+
39
+
Improved Documentation
40
+
~~~~~~~~~~~~~~~~~~~~~~
41
+
42
+
- Added new user guide on :ref:`user-guide-gpu`. (:issue:`2751`)
0 commit comments