summaryrefslogtreecommitdiffstats
path: root/release_docs
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2019-10-08 21:14:40 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2019-10-08 21:14:40 (GMT)
commitd42203b1d44686a0e5309f061c996b959023ce57 (patch)
tree940244d6969c02ad8eecdcc79b9f1a1a95ab78cd /release_docs
parent403c0445fb513e2b50d0167316c963c202733415 (diff)
parent4c558700ab33934e7358483c5d20fea4823baf9e (diff)
downloadhdf5-d42203b1d44686a0e5309f061c996b959023ce57.zip
hdf5-d42203b1d44686a0e5309f061c996b959023ce57.tar.gz
hdf5-d42203b1d44686a0e5309f061c996b959023ce57.tar.bz2
Merging in latest from upstream (HDFFV/hdf5:refs/heads/develop)
* commit '4c558700ab33934e7358483c5d20fea4823baf9e': 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. Remove debugging logic from the new t_bigio test Expanded t_bigio.c to include Jordan's test from HDFFV-10539 Another cleanup pass as suggested by the reviewers. Fix some typos and remove an unused prototype from H5Sprivate.h At the suggestion of the PR reviewers, moved the mpio_create_large_type to H5mpi.c and renamed the function appropriately. Also moved some support functions to set and get the vvalue where we transistion to using derived datatypes. Made code review edit suggested by Jerome, plus various code updates to files that I touched to eliminate compile warnings (on my Linux box). No functional changes, just removed some tab characters Make the initial bug fixes to allow >2GB writes with Independent IO
Diffstat (limited to 'release_docs')
-rw-r--r--release_docs/RELEASE.txt10
1 files changed, 10 insertions, 0 deletions
diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt
index 4c398a0..c2f2ebe 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.