diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2016-03-16 17:45:44 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2016-03-16 17:45:44 (GMT) |
commit | 19e8a6e0079676ce1188134abc4ad9dc6c892c60 (patch) | |
tree | 250c298e2c4f105d463322f3c03e9cdf580be963 | |
parent | 7621b24f91e678e707305b90566bb6c5185d54e7 (diff) | |
download | hdf5-19e8a6e0079676ce1188134abc4ad9dc6c892c60.zip hdf5-19e8a6e0079676ce1188134abc4ad9dc6c892c60.tar.gz hdf5-19e8a6e0079676ce1188134abc4ad9dc6c892c60.tar.bz2 |
[svn-r29451] Updated RELEASE.txt
-rw-r--r-- | release_docs/RELEASE.txt | 23 |
1 files changed, 21 insertions, 2 deletions
diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index 63d1718..fb0bdaa 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -57,7 +57,8 @@ This release supports the following features: instead. * A new --enable-symbols option allows symbols to be generated - independently of the build mode. + independently of the build mode. --disable-symbols can be used to strip + symbols from the binary. * A new --enable-asserts option sets/unsets NDEBUG. This is independent of the build mode. This also enables some extra low-overhead debug checks @@ -78,6 +79,24 @@ This release supports the following features: wrapper libraries is due to these flag changes, not a decrease in code quality. + * The option to clear file buffers has been removed. Any buffer that will + eventually be written to disk will now always be memset to zero. This + prevents the previous contents of the buffer from being written to the + disk if the buffer contents are not completely overwritten, which has + security implications. + + - LFS changes + + The way the autotools handle large file support (LFS) has been overhauled + in this release. + + * We assume ftello and fseeko exist + + * We no longer explicitly use the *64 I/O functions. Instead we rely on a + mapping provided by _FILE_OFFSET_BITS or its equivalent. + + * _LARGEFILE(64)_SOURCE is no longer exported via AM_CPPFLAGS. + Parallel Library: ----------------- - Collective Metadata I/O @@ -178,7 +197,7 @@ Issues Addressed in this Release since alpha1 H5Pget_virtual_view H5Pget_efile_prefix - when a dataset access property list was obtained from the dataset identifier. Fixed. + when a dataset access property list was obtained from H5Dget_access_plist(). Fixed. (DER and NAF 2016-03-14 HDFFV-9716) - h5dump segfaulted when provided with invalid arguments or when optional aruments are last option |