diff options
author | Vailin Choi <vchoi@hdfgroup.org> | 2017-08-03 20:57:24 (GMT) |
---|---|---|
committer | Vailin Choi <vchoi@hdfgroup.org> | 2017-08-03 20:57:24 (GMT) |
commit | c2ba92875edf2e605707cfc322d21916e3f05d22 (patch) | |
tree | c4bc40a6bad08fd72d31ad8032193a25cc10b585 /release_docs | |
parent | 8eaef34ef0140182dffca391fb0bc63cd2ef2bd1 (diff) | |
parent | 98d4addcf7cbec71600663e7023b6b7e0b5b5f35 (diff) | |
download | hdf5-c2ba92875edf2e605707cfc322d21916e3f05d22.zip hdf5-c2ba92875edf2e605707cfc322d21916e3f05d22.tar.gz hdf5-c2ba92875edf2e605707cfc322d21916e3f05d22.tar.bz2 |
Merge pull request #629 in HDFFV/hdf5 from ~VCHOI/my_hdf5_fork:hdf5_1_10 to hdf5_1_10
* commit '98d4addcf7cbec71600663e7023b6b7e0b5b5f35':
Add h5repack tests for paged aggregation
Update release notes 1) Fixes for paged aggregation 2) Fix for HDFFV-10217 3) Fix for HDFFV-7853
Add h5repack tests for paged aggregation Add tests to h5repack.sh.in to verify options added for paged aggregation work as expected.
Skip test in test/fheap.c when: a) multi/split drivers and b) persisting free-space or using paged aggregation strategy because the library will fail file creation (temporary) for the above conditions.
Changes made based on RFC review comments Test the changes in a branch via daily testing.
Diffstat (limited to 'release_docs')
-rw-r--r-- | release_docs/RELEASE.txt | 43 |
1 files changed, 42 insertions, 1 deletions
diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index b6f508b..08e2477 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -175,7 +175,41 @@ Bug Fixes since HDF5-1.10.0-patch1 release Library ------- - - + - Fixes for paged aggregation + + Skip test in test/fheap.c when: + (1) multi/split drivers and + (2) persisting free-space or using paged aggregation strategy + + (VC, 2017/07/10) + + - Fixes for paged aggregation + + Changes made based on RFC review comments: + (1) Add maximum value for file space page size + (2) Drop check for page end metadata threshold + (3) Remove "can_shrink" and "shrink" callbacks for small section class + + (VC, 2017/06/09) + + - Fix for infinite loop in H5VM_power2up(). + + The function H5VM_power2up() returns the next power of 2 + for n. When n exceeds 2^63, it overflows and becomes 0 causing + the infinite looping. + + The fix ensures that the function checks for n >= 2^63 + and returns 0. + + (HDFFV-10217, VC, 2017/07/10) + + - Fix for H5Ocopy doesn't work with open identifiers + + Changes made so that raw data for dataset objects are copied from + cached info when possible instead of flushing objects to file and + read them back in again. + + (HDFFV-7853, VC, 2017/07/05) Configuration ------------- @@ -225,6 +259,13 @@ Bug Fixes since HDF5-1.10.0-patch1 release Tools ----- + - h5repack + + Add tests to h5repack.sh.in to verify options added for paged + aggregation work as expected. + + (VC, 2017/08/03) + - h5diff h5diff segfaulted on compare of a NULL variable length string. |