summaryrefslogtreecommitdiffstats
path: root/release_docs
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2017-11-17 20:55:56 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2017-11-17 20:55:56 (GMT)
commitdb8b5ca2ca0b61031e92e3279c35c5a921d5f609 (patch)
tree64ebe11b3c378a3b7ae9a22a30a66848835cc22b /release_docs
parent2e05d657549d1287ce0d9a7ee5364e609046adb8 (diff)
parent2e3f1b1600b47ac9b89fa41ec7e2a98a78c8a6b7 (diff)
downloadhdf5-db8b5ca2ca0b61031e92e3279c35c5a921d5f609.zip
hdf5-db8b5ca2ca0b61031e92e3279c35c5a921d5f609.tar.gz
hdf5-db8b5ca2ca0b61031e92e3279c35c5a921d5f609.tar.bz2
Merge pull request #784 in HDFFV/hdf5 from ~BYRN/hdf5_adb:hdf5_1_10 to hdf5_1_10
* commit '2e3f1b1600b47ac9b89fa41ec7e2a98a78c8a6b7': replace deleted note HDFFV-10328 fix typos HDFFV-10328 - remove plugin allocation changes HDFFV-10328, HDFFV-10329 Merge from develop Fix snprintf to HDsnprintf usage - breaks windows HDFFV-10329 - add new jira issue. Fix linking of libs
Diffstat (limited to 'release_docs')
-rw-r--r--release_docs/RELEASE.txt24
1 files changed, 24 insertions, 0 deletions
diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt
index 1ac55c5..89d77fd 100644
--- a/release_docs/RELEASE.txt
+++ b/release_docs/RELEASE.txt
@@ -231,6 +231,17 @@ Bug Fixes since HDF5-1.10.1 release
Library
-------
+ - filter plugin handling in H5PL.c and H5Z.c
+
+ It was discovered that the dynamic loading process used by
+ filter plugins had issues with library dependencies.
+
+ CMake build process changed to use LINK INTERFACE keywords, which
+ allowed HDF5 C library to make dependent libraries private. The
+ filter plugin libraries no longer require dependent libraries
+ (such as szip or zlib) to be available.
+ (ADB - 2017/11/16, HDFFV-10328)
+
- Fix rare object header corruption bug
In certain cases, such as when converting large attributes to dense
@@ -307,6 +318,18 @@ Bug Fixes since HDF5-1.10.1 release
Configuration
-------------
+ - cmake
+
+ The hdf5 library used shared szip and zlib, which needlessly required
+ applications to link with the same szip and zlib libraries.
+
+ Changed the target_link_libraries commands to use the static libs.
+ Removed improper link duplication of szip and zlib.
+ Adjusted the link dependencies and the link interface values of
+ the target_link_libraries commands.
+
+ (ADB - 2017/11/14, HDFFV-10329)
+
- cmake MPI
CMake implementation for MPI was problematic and would create incorrect
@@ -348,6 +371,7 @@ Bug Fixes since HDF5-1.10.1 release
Too many commands for POST_BUILD step caused command line to be
too big on windows.
+
Changed foreach of copy command to use a custom command with the
use of the HDFTEST_COPY_FILE macro.