summaryrefslogtreecommitdiffstats
path: root/release_docs
diff options
context:
space:
mode:
authorVailin Choi <vchoi@hdfgroup.org>2019-06-17 15:28:58 (GMT)
committerVailin Choi <vchoi@hdfgroup.org>2019-06-17 15:28:58 (GMT)
commitf7c2a75404c84bebc96d4c5515eb4395f8c9bdf7 (patch)
tree4088ff1236723f0fcb60d547848f6d7cb76661b2 /release_docs
parentcbc95dee3c794fb7099e8a4c5f25ca56e981c31a (diff)
parentdfdc27b04b2e8bcd1985ba90ce6553d8b3805fda (diff)
downloadhdf5-f7c2a75404c84bebc96d4c5515eb4395f8c9bdf7.zip
hdf5-f7c2a75404c84bebc96d4c5515eb4395f8c9bdf7.tar.gz
hdf5-f7c2a75404c84bebc96d4c5515eb4395f8c9bdf7.tar.bz2
Merge pull request #1729 in HDFFV/hdf5 from ~VCHOI/my_third_fork:bugfix/HDFFV-10800-h5ocopy-failure to develop
* commit 'dfdc27b04b2e8bcd1985ba90ce6553d8b3805fda': Fix release notes based on feedback from pull request. Fix for HDFFV-10800 H5Ocopy failure: The value for the H5F_LIBVER_V18 index in H5O_fill_ver_bounds[], the format version bounds array for fill value message, should be version 3 not 2.
Diffstat (limited to 'release_docs')
-rw-r--r--release_docs/RELEASE.txt13
1 files changed, 13 insertions, 0 deletions
diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt
index b30e688..78118b8 100644
--- a/release_docs/RELEASE.txt
+++ b/release_docs/RELEASE.txt
@@ -268,6 +268,19 @@ Bug Fixes since HDF5-1.10.3 release
Library
-------
+ - Fixed an issue where copying a version 1.8 dataset between files using
+ H5Ocopy fails due to an incompatible fill version
+
+ When using the HDF5 1.10.x H5Ocopy() API call to copy a version 1.8
+ dataset to a file created with both high and low library bounds set to
+ H5F_LIBVER_V18, the H5Ocopy() call will fail with the error stack indicating
+ that the fill value version is out of bounds.
+
+ This was fixed by changing the fill value message version to H5O_FILL_VERSION_3
+ (from H5O_FILL_VERSION_2) for H5F_LIBVER_V18.
+
+ (VC - 2019/6/14, HDFFV-10800)
+
- Fixed a bug that would cause an error or cause fill values to be
incorrectly read from a chunked dataset using the "single chunk" index if
the data was held in cache and there was no data on disk.