diff options
author | Vailin Choi <vchoi@jam.ad.hdfgroup.org> | 2018-08-16 16:58:04 (GMT) |
---|---|---|
committer | Vailin Choi <vchoi@jam.ad.hdfgroup.org> | 2018-08-16 16:58:04 (GMT) |
commit | f2d0a3404543dd50cbd3f52e821b26d5d986e44e (patch) | |
tree | 025798cd2d1fa94c1479b7d1eaf654594f766435 | |
parent | b9511a1fc3cfad74233fd0e706dc42ae5b9e4641 (diff) | |
download | hdf5-f2d0a3404543dd50cbd3f52e821b26d5d986e44e.zip hdf5-f2d0a3404543dd50cbd3f52e821b26d5d986e44e.tar.gz hdf5-f2d0a3404543dd50cbd3f52e821b26d5d986e44e.tar.bz2 |
Modify release notes for H5Oget_info (HDFFV-10180).
-rw-r--r-- | release_docs/RELEASE.txt | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index 629d49a..73bea7f 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -187,12 +187,22 @@ Bug Fixes since HDF5-1.10.2 release Retrieving all such information regardless is an overkill and causes performance issue when doing so for many objects. - Add an additional parameter to the the H5Oget_info family of routines - indicating the type of information to be retrieved. The same is done - to the H5Ovisit family of routines which recursively visits an object + Add an additional parameter "fields" to the the H5Oget_info family of routines + indicating the type of information to be retrieved. The same is done to + the H5Ovisit family of routines which recursively visits an object returning object information in a callback function. Both sets of routines are versioned and the corresponding compatibility macros are added. + The two sets of routines are: + (1) H5Oget_info2, H5Oget_info_by_idx2, H5Oget_info_by_name2 + (2) H5Ovisit2, H5Ovisit_by_name2 + + Existing applications that use the H5Oget_info family of routines should either + (a) add the new parameter "fields" or (b) add version 1 to the + H5Oget_info calls. For example: + (a) H5Oget_info(object_id, object_info, fields) + (b) H5Oget_info1(object_id, object_info) + (VC - 2018/08/15, HDFFV-10180) - Test failure due to metadata size in test/vds.c |