summaryrefslogtreecommitdiffstats
path: root/release_docs
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2020-07-28 00:32:01 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2020-08-11 16:48:47 (GMT)
commit98ca520f55531b0783bb1425c1fb3a125c1c40f7 (patch)
tree367dffc40931c2a2150acd1d12fc7b81a62b7c8d /release_docs
parent0ea4639d9df2d1bffc63ce9be5366ba89a7f5a13 (diff)
downloadhdf5-98ca520f55531b0783bb1425c1fb3a125c1c40f7.zip
hdf5-98ca520f55531b0783bb1425c1fb3a125c1c40f7.tar.gz
hdf5-98ca520f55531b0783bb1425c1fb3a125c1c40f7.tar.bz2
Brings HDFFV-11027 H5S_NO_CLASS fix to 1.10 from develop
Diffstat (limited to 'release_docs')
-rw-r--r--release_docs/RELEASE.txt16
1 files changed, 16 insertions, 0 deletions
diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt
index 3a85dcc..6a9dcb5 100644
--- a/release_docs/RELEASE.txt
+++ b/release_docs/RELEASE.txt
@@ -511,6 +511,22 @@ Bug Fixes since HDF5-1.10.5 release
(QAK - 2020/05/07)
+ - 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:
----------------
-