Skip to content

Commit

Permalink
notes
Browse files Browse the repository at this point in the history
  • Loading branch information
mavaylon1 committed Oct 31, 2024
1 parent 45198b9 commit f310e62
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# HDMF-ZARR Changelog

## 1.0.0 (Upcoming)
### Enhancements
# Add initial refactor of export, supporting references and internal/external links from Zarr to Zarr. @mavaylon1 [#194](https://github.com/hdmf-dev/hdmf-zarr/pull/194)


## 0.9.0 (September 16, 2024)
### Enhancements
* Added support for appending a dataset of references. @mavaylon1 [#203](https://github.com/hdmf-dev/hdmf-zarr/pull/203)
Expand All @@ -22,8 +27,8 @@
* Removed `linkable` from the documentation to keep in line with `hdmf-schema-language`. @mavaylon1 [#180](https://github.com/hdmf-dev/hdmf-zarr/pull/180)

### Bug Fixes
* Fixed bug in `ZarrIO.__open_file_consolidated` that led to remote files being opened without consolidated metadata. @oruebel [#184](https://github.com/hdmf-dev/hdmf-zarr/pull/184)
* Fixed minor bug where `ZarrIO.__open_file_consolidated` used properties of `ZarrIO` instead of the provided input parameters. @oruebel [#183](https://github.com/hdmf-dev/hdmf-zarr/pull/183)
* Fixed bug in `ZarrIO.__open_file_consolidated` that led to remote files being opened without consolidated metadata. @oruebel [#184](https://github.com/hdmf-dev/hdmf-zarr/pull/184)
* Fixed minor bug where `ZarrIO.__open_file_consolidated` used properties of `ZarrIO` instead of the provided input parameters. @oruebel [#183](https://github.com/hdmf-dev/hdmf-zarr/pull/183)

## 0.6.0 (February 21, 2024)

Expand Down
2 changes: 2 additions & 0 deletions src/hdmf_zarr/backend.py
Original file line number Diff line number Diff line change
Expand Up @@ -1418,6 +1418,8 @@ def __read_group(self, zarr_obj, name=None):
if name is None:
name = str(os.path.basename(zarr_obj.name))

# Note: The source should be from the zarr object and not assumed to be
# from the file being read.
if isinstance(zarr_obj.store, ConsolidatedMetadataStore):
source = zarr_obj.store.store.path
else:
Expand Down

0 comments on commit f310e62

Please sign in to comment.