summaryrefslogtreecommitdiffstats
path: root/release_docs
diff options
context:
space:
mode:
authorAllen Byrne <50328838+byrnHDF@users.noreply.github.com>2021-08-12 16:04:06 (GMT)
committerGitHub <noreply@github.com>2021-08-12 16:04:06 (GMT)
commitcc866bc154d761157ad0a1dbc96b20df946b8970 (patch)
treeedce8936fd05b34efbda1c15609fd06b21f42cf2 /release_docs
parent7a0776dcff17330f2999420de888fd156a24239b (diff)
downloadhdf5-cc866bc154d761157ad0a1dbc96b20df946b8970.zip
hdf5-cc866bc154d761157ad0a1dbc96b20df946b8970.tar.gz
hdf5-cc866bc154d761157ad0a1dbc96b20df946b8970.tar.bz2
Rework version-check for relnum in H5checkversion function (#896)
Diffstat (limited to 'release_docs')
-rw-r--r--release_docs/RELEASE.txt19
1 files changed, 19 insertions, 0 deletions
diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt
index 2195154..30db16a 100644
--- a/release_docs/RELEASE.txt
+++ b/release_docs/RELEASE.txt
@@ -262,6 +262,25 @@ New Features
Library:
--------
+ - Change how the release part of version, in major.minor.release is checked
+ for compatibility
+
+ The HDF5 library uses a function, H5check_version, to check that
+ the version defined in the header files, which is used to compile an
+ application is compatible with the version codified in the library, which
+ the application loads at runtime. This previously required an exact match
+ or the library would print a warning, dump the build settings and then
+ abort or continue. An environment variable controlled the logic.
+
+ Now the function first checks that the library release version, in
+ major.minor.release, is not older than the version in the headers.
+ Secondly, if the release version is different, it checks if either
+ the library version or the header version is in the exception list, in
+ which case the release part of version, in major.minor.release, must
+ be exact. An environment variable still controls the logic.
+
+ (ADB - 2021/07/27)
+
- H5Gcreate1() now rejects size_hint parameters larger than UINT32_MAX
The size_hint value is ultimately stored in a uint32_t struct field,