summaryrefslogtreecommitdiffstats
path: root/release_docs/RELEASE.txt
diff options
context:
space:
mode:
authorMuqun Yang <myang6@hdfgroup.org>2020-02-07 20:43:02 (GMT)
committerMuqun Yang <myang6@hdfgroup.org>2020-02-07 20:43:02 (GMT)
commit1b937c69f4b8187401eeb8eef195bbcc2ea58312 (patch)
treea4b8b398e770344afdc40f5e17299a9bd84507e8 /release_docs/RELEASE.txt
parent021740bac0893a87c762959b284283bc236d0ab3 (diff)
downloadhdf5-1b937c69f4b8187401eeb8eef195bbcc2ea58312.zip
hdf5-1b937c69f4b8187401eeb8eef195bbcc2ea58312.tar.gz
hdf5-1b937c69f4b8187401eeb8eef195bbcc2ea58312.tar.bz2
HDFFV-11014, fix the h5repack issue that misses a few attributes during the repacking. The flag that checks the object reference attribute is not updated properly. The fix is trivial. Just need to move the flag update line into the inner loop. Tested at Jelly. Also update the release.txt.
Diffstat (limited to 'release_docs/RELEASE.txt')
-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 8b25de0..12a703d 100644
--- a/release_docs/RELEASE.txt
+++ b/release_docs/RELEASE.txt
@@ -479,6 +479,16 @@ New Features
Tools:
------
+ - h5repack was fixed to repack the reference attributes properly.
+ The code line that checks if the update of reference inside a compound
+ datatype is misplaced outside the code block loop that carries out the
+ check. In consequence, the next attribute that is not the reference
+ type was repacked again as the reference type and caused the failure of
+ repacking. The fix is to move the corresponding code line to the correct
+ code block.
+
+ (KY -2020/02/07, HDFFV-11014)
+
- h5diff was updated to use the new reference APIs.
h5diff uses the new reference APIs to compare references.