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
``test_store_supports_partial_writes``, and ``test_store_supports_listing``
20
+
to to be implemented using ``@abstractmethod``, rather raising ``NotImplementedError``. (:issue:`2693`)
21
+
- Test the error raised for invalid buffer arguments in ``StoreTests``. (:issue:`2693`)
22
+
- Test that data can be written to a store that's not yet open using the store.set method in ``StoreTests``. (:issue:`2693`)
23
+
- Adds a new function ``init_array`` for initializing an array in storage, and refactors ``create_array``
24
+
to use ``init_array``. ``create_array`` takes two new parameters: ``data``, an optional array-like object, and ``write_data``, a bool which defaults to ``True``.
25
+
If ``data`` is given to ``create_array``, then the ``dtype`` and ``shape`` attributes of ``data`` are used to define the
26
+
corresponding attributes of the resulting Zarr array. Additionally, if ``data`` given and ``write_data`` is ``True``,
27
+
then the values in ``data`` will be written to the newly created array. (:issue:`2761`)
28
+
29
+
30
+
Bugfixes
31
+
~~~~~~~~
32
+
33
+
- Wrap sync fsspec filesystems with ``AsyncFileSystemWrapper``. (:issue:`2533`)
34
+
- Added backwards compatibility for Zarr format 2 structured arrays. (:issue:`2681`)
35
+
- Update equality for ``LoggingStore`` and ``WrapperStore`` such that 'other' must also be a ``LoggingStore`` or ``WrapperStore`` respectively, rather than only checking the types of the stores they wrap. (:issue:`2693`)
36
+
- Ensure that ``ZipStore`` is open before getting or setting any values. (:issue:`2693`)
37
+
- Use stdout rather than stderr as the default stream for ``LoggingStore``. (:issue:`2693`)
38
+
- Match the errors raised by read only stores in ``StoreTests``. (:issue:`2693`)
39
+
- Fixed ``ZipStore`` to make sure the correct attributes are saved when instances are pickled.
40
+
This fixes a previous bug that prevent using ``ZipStore`` with a ``ProcessPoolExecutor``. (:issue:`2762`)
41
+
- Updated the optional test dependencies to include ``botocore`` and ``fsspec``. (:issue:`2768`)
42
+
- Fixed the fsspec tests to skip if ``botocore`` is not installed.
43
+
Previously they would have failed with an import error. (:issue:`2768`)
44
+
- Optimize full chunk writes. (:issue:`2782`)
45
+
46
+
47
+
Improved Documentation
48
+
~~~~~~~~~~~~~~~~~~~~~~
49
+
50
+
- Changed the machinery for creating changelog entries.
51
+
Now individual entries should be added as files to the `changes` directory in the `zarr-python` repository, instead of directly to the changelog file. (:issue:`2736`)
52
+
53
+
Other
54
+
~~~~~
55
+
56
+
- Created a type alias ``ChunkKeyEncodingLike`` to model the union of ``ChunkKeyEncoding`` instances and the dict form of the
57
+
parameters of those instances. ``ChunkKeyEncodingLike`` should be used by high-level functions to provide a convenient
58
+
way for creating ``ChunkKeyEncoding`` objects. (:issue:`2763`)
0 commit comments