summaryrefslogtreecommitdiffstats
path: root/release_docs/RELEASE.txt
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2020-07-28 12:13:18 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2020-07-28 12:13:18 (GMT)
commit10e59f6ba4fdf105840e9d88204c16d505281978 (patch)
tree3d13fc3e690d09abb6597e0fccb88d4848d4761c /release_docs/RELEASE.txt
parent74e09473c825610d203565e5ed9deb156256d6ea (diff)
parent5857bb817019b8513f796c9564de3f1845f9a44a (diff)
downloadhdf5-10e59f6ba4fdf105840e9d88204c16d505281978.zip
hdf5-10e59f6ba4fdf105840e9d88204c16d505281978.tar.gz
hdf5-10e59f6ba4fdf105840e9d88204c16d505281978.tar.bz2
Merge pull request #2697 in HDFFV/hdf5 from ~BYRN/hdf5_adb:develop to develop
* commit '5857bb817019b8513f796c9564de3f1845f9a44a': Only one line needed to compare Revert err file revert error-stack enable Add release notes for tools add test file ext Correct file name in test Tools refactor
Diffstat (limited to 'release_docs/RELEASE.txt')
-rw-r--r--release_docs/RELEASE.txt40
1 files changed, 38 insertions, 2 deletions
diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt
index 84f339a..42ce5e4 100644
--- a/release_docs/RELEASE.txt
+++ b/release_docs/RELEASE.txt
@@ -659,7 +659,7 @@ Bug Fixes since HDF5-1.10.3 release
- Fixed the segmentation fault when reading attributes with multiple threads
It was reported that the reading of attributes with variable length string
- datatype will crash with segmentation fault particularly when the number of
+ datatype will crash with segmentation fault particularly when the number of
threads is high (>16 threads). The problem was due to the file pointer that
was set in the variable length string datatype for the attribute. That file
pointer was already closed when the attribute was accessed.
@@ -1028,7 +1028,43 @@ Bug Fixes since HDF5-1.10.3 release
Tools
-----
- -
+ - The tools library was updated by standardizing the error stack process.
+
+ General sequence is:
+ h5tools_setprogname(PROGRAMNAME);
+ h5tools_setstatus(EXIT_SUCCESS);
+ h5tools_init();
+ ... process the command-line (check for error-stack enable) ...
+ h5tools_error_report();
+ ... (do work) ...
+ h5diff_exit(ret);
+
+ (ADB - 2020/07/20, HDFFV-11066)
+
+ - h5diff fixed a command line parsing error.
+
+ h5diff would ignore the argument to -d (delta) if it is smaller than DBL_EPSILON.
+ The macro H5_DBL_ABS_EQUAL was removed and a direct value comparision was used.
+
+ (ADB - 2020/07/20, HDFFV-10897)
+
+ - h5diff added a command line option to ignore attributes.
+
+ h5diff would ignore all objects with a supplied path if the exclude-path argument is used.
+ Adding the exclude-attribute argument will only eclude attributes, with the supplied path,
+ from comparision.
+
+ (ADB - 2020/07/20, HDFFV-5935)
+
+ - h5diff added another level to the verbose argument to print filenames.
+
+ Added verbose level 3 that is level 2 plus the filenames. The levels are:
+ 0 : Identical to '-v' or '--verbose'
+ 1 : All level 0 information plus one-line attribute status summary
+ 2 : All level 1 information plus extended attribute status report
+ 3 : All level 2 information plus file names
+
+ (ADB - 2020/07/20, HDFFV-10005)
High-Level APIs:
------