From 65a7da8e6f2580b54d3382c30952cc5fe7d2d706 Mon Sep 17 00:00:00 2001 From: Jordan Henderson Date: Wed, 23 Jun 2021 15:52:53 -0500 Subject: [PATCH] Add RELEASE.txt entry for h5repack bug fix --- release_docs/RELEASE.txt | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index e2cd08d4b8c..78aa419d004 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -793,6 +793,20 @@ Bug Fixes since HDF5-1.12.0 release (ADB - 2020/07/20, HDFFV-1005) + - Fixed a bug with h5repack ignoring the "-q" and "-z" command-line options + + h5repack uses the -q and -z command-line options to specify the indexing + options for objects in the file when repacking. Previously, h5repack + would simply ignore any setting from these options. This has been fixed + so that h5repack will correctly interpret the following settings: + + -q "name" : Sort objects by name order + -q "creation_order" : Sort objects by link creation order + -z "ascending" : Sort objects by ascending name/link creation order + -z "descending" : Sort objects by descending name/link creation order + + (JTH - 2020/04/16, HDFFV-11030) + Fortran API -----------