diff options
author | Allen Byrne <50328838+byrnHDF@users.noreply.github.com> | 2021-08-19 18:17:24 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-19 18:17:24 (GMT) |
commit | 837a044f773aebcd8e07ea7ae0a26ad37dd80f27 (patch) | |
tree | b4fc20c956147c3219c8e3aad4eac3aac0450deb /release_docs | |
parent | c0ef1fd6de3ff20cc8fc49c05ca71254c784bea6 (diff) | |
download | hdf5-837a044f773aebcd8e07ea7ae0a26ad37dd80f27.zip hdf5-837a044f773aebcd8e07ea7ae0a26ad37dd80f27.tar.gz hdf5-837a044f773aebcd8e07ea7ae0a26ad37dd80f27.tar.bz2 |
1.12 Rework version-check for relnum in H5check. Merge of #812 (#931)
Diffstat (limited to 'release_docs')
-rw-r--r-- | release_docs/RELEASE.txt | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index 178e41a..ecac75f 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -75,6 +75,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, |