summaryrefslogtreecommitdiffstats
path: root/release_docs
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2020-07-28 16:29:04 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2020-07-28 16:29:04 (GMT)
commitb201a78b33bd572f401c7d1693d06af0103e1a96 (patch)
treef488dc298067c3088fea08f3db6b6d78734119c5 /release_docs
parent10e59f6ba4fdf105840e9d88204c16d505281978 (diff)
parente4603ff8a171e82de6373ba6eddcf59d5eeab5aa (diff)
downloadhdf5-b201a78b33bd572f401c7d1693d06af0103e1a96.zip
hdf5-b201a78b33bd572f401c7d1693d06af0103e1a96.tar.gz
hdf5-b201a78b33bd572f401c7d1693d06af0103e1a96.tar.bz2
Merge pull request #2714 in HDFFV/hdf5 from ~DEROBINS/hdf5_der:h5s_set_extent_none to develop
* commit 'e4603ff8a171e82de6373ba6eddcf59d5eeab5aa': Updated the Java tests to deal with H5Sset_extent_none changes Fixed additional typos in tselect.c comments. Fixes typo in tselect.c Updates H5Sset_extent_none() to set H5S_NULL
Diffstat (limited to 'release_docs')
-rw-r--r--release_docs/RELEASE.txt15
1 files changed, 15 insertions, 0 deletions
diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt
index 42ce5e4..9972288 100644
--- a/release_docs/RELEASE.txt
+++ b/release_docs/RELEASE.txt
@@ -951,6 +951,21 @@ Bug Fixes since HDF5-1.10.3 release
(DER - 2019/12/09, HDFFV-10945)
+ - H5Sset_extent_none() sets the dataspace class to H5S_NO_CLASS which
+ causes asserts/errors when passed to other dataspace API calls.
+
+ H5S_NO_CLASS is an internal class value that should not have been
+ exposed via a public API call.
+
+ In debug builds of the library, this can cause asserts to trip. In
+ non-debug builds, it will produce normal library errors.
+
+ The new library behavior is for H5Sset_extent_none() to convert
+ the dataspace into one of type H5S_NULL, which is better handled
+ by the library and easier for developers to reason about.
+
+ (DER - 2020/07/27, HDFFV-11027)
+
Java Library:
----------------