Skip to content

Commit

Permalink
Add release note
Browse files Browse the repository at this point in the history
  • Loading branch information
derobins committed Mar 15, 2024
1 parent 805fc9c commit a158da6
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions release_docs/RELEASE.txt
Original file line number Diff line number Diff line change
Expand Up @@ -591,6 +591,27 @@ Bug Fixes since HDF5-1.14.0 release

Library
-------
- Take user block into account in H5Dchunk_iter() and H5Dget_chunk_info()

The address reported by the following functions did not correctly
take the user block into account:

* H5Dchunk_iter() <-- addr passed to callback
* H5Dget_chunk_info() <-- addr parameter
* H5Dget_chunk_info_by_coord() <-- addr parameter

This means that these functions report logical HDF5 file addresses,
which will only be equal to the physical addresses when there is no
user block prepended to the HDF5 file. This is unfortunate, as the
primary use of these functions is to get physical addresses in order
to directly access the chunks.

The listed functions now correctly take the user block into account,
so they will emit phyiscal addresses that can be used to directly
access the chunks.

Fixes #3003

- Fixed asserts raised by large values of H5Pset_est_link_info() parameters

If large values for est_num_entries and/or est_name_len were passed
Expand Down

0 comments on commit a158da6

Please sign in to comment.