diff options
author | Larry Knox <lrknox@hdfgroup.org> | 2019-10-09 20:45:26 (GMT) |
---|---|---|
committer | Larry Knox <lrknox@hdfgroup.org> | 2019-10-09 20:45:26 (GMT) |
commit | 984c1bacd93c2f782c75c02d88d6e5c0362c74d0 (patch) | |
tree | 97bf7d8b15caee53eb8fdfd84eb09316b54903f1 /release_docs | |
parent | 19c2eb2800a48d0bd5a8af7757e21cc5cd22fa3c (diff) | |
parent | 5d2545ee26d4b7013ed363545705f16a67087549 (diff) | |
download | hdf5-984c1bacd93c2f782c75c02d88d6e5c0362c74d0.zip hdf5-984c1bacd93c2f782c75c02d88d6e5c0362c74d0.tar.gz hdf5-984c1bacd93c2f782c75c02d88d6e5c0362c74d0.tar.bz2 |
Merge pull request #1990 in HDFFV/hdf5 from ~JSOUMAGNE/hdf5:references_1_12 to hdf5_1_12
* commit '5d2545ee26d4b7013ed363545705f16a67087549':
Fix func enter macro in H5T_ref_reclaim()
Update RELEASE.txt for reference changes
Fix reference type comparison in h5dump
Make wrappers, tests and tools use H5Treclaim() instead of H5Dvlen_reclaim()
Add new H5R API that abstracts object, region and attribute reference types
Remove ability to loc by ref from H5VL layer
Add support for retrieving object name by token
Add H5VL_OBJECT_GET_TYPE to get object type
Add H5VL_MAX_TOKEN_SIZE and H5VL_token_t
Adapt Jerome's "file info" H5VL 'get' query to retrieve container token info.
Fix H5VL_blob_get to return size of blob
Add 'blob' callbacks to VOL, along with a native implementation to store them in the global heap, and changed the VL datatype conversion code to use blobs.
Diffstat (limited to 'release_docs')
-rw-r--r-- | release_docs/RELEASE.txt | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index a43768b..6de36ef 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -248,6 +248,16 @@ New Features (NAF - 2019/03/01) + - Add new H5R_ref_t type for object, dataset region and _attribute_ + references. This new type will deprecate the current hobj_ref_t + and hdset_reg_ref_t types for references. Added H5T_REF datatype + to read and write new reference types. As opposed to previous + reference types, reference creation no longer modifies existing + files. New reference types also now support references to external + files. + + (JS - 2019/10/08) + - Remove H5I_REFERENCE from the library This ID class was never used by the library and has been removed. |