| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
|
|
|
|
| |
* Use variable for ignore-eol usage. (#3592)
* Add last_test depends properties
* Just print status on CMake below 3.14 (#3595)
* updated bin/release to fix CMake tar.gz and zip files for saip and zlib.
Removed the use of -commons linking option on Darwin as COMMON and
EQUIVALENCE are no long used.
Release of HDF5 1.10.11.
---------
Co-authored-by: Allen Byrne <50328838+byrnHDF@users.noreply.github.com>
|
| |
|
|
|
|
|
|
|
|
| |
* Check config on windows for correct wix name (#3573)
* Set version to 1.10.11
Update Platforms tested in RELEASE.txt
Update release script
|
| |
|
|
|
| |
Co-authored-by: Allen Byrne <50328838+byrnHDF@users.noreply.github.com>
|
|
|
|
|
|
|
|
|
|
|
| |
* Initial preparation of hdf5-1_10_11 release branch for HDF5 1.10.11
release:
Updated configure.ac for release: switched configure default to production mode and disabled maintainer mode.
Set HDF5_GENERATE_HEADERS to OFF in src/CMakeLists.txt.
Generated release files including Makefile.ins with autogen.sh, autoconf 2.71 and automake 1.16.2
Incremented version to 1.10.11-2.
* Update branch name in main.yml.
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
| |
* Sync CMake and doxygen changes from develop
* Add missing images
|
| |
|
|
|
|
|
| |
This reverts commit c5a9cd8cf187b501c569490d3297bda1fccd6667.
^^^^ Which itself was a revert of 6129233
|
|
|
|
|
|
|
| |
space allocation bug (#3394) (#3475)" (#3479)" (#3486)
This reverts commit e3d420084c9bcc3e8f2a4e68bc01e39a1a5f48d1.
^^^ Which itself was a revert of dd4c6c7
|
| |
|
|
|
|
|
| |
allocation bug (#3394) (#3475)" (#3479)
This reverts commit dd4c6c707370c32eb2722ea18509485e43ecef4f.
|
|
|
|
| |
bug (#3394) (#3475)
|
| |
|
|
|
|
| |
filter (#3390) (#3459)
|
|
|
|
|
|
|
| |
This reverts commit 1ddc2e906ac59d3916ec23a2400227654ccde4dd.
This CVE fix triggers a difficult to reproduce Java test error. This may
be due to uninitialized bytes in the 128 bit float test that precedes
it.
|
| |
|
| |
|
|
|
|
|
| |
These fixes introduce a difficult-to-reproduce Java test failure so this
will be reverted while we investigate. Individual CVE fixes will instead
be introduced one at a time.
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* Fix for CVE-2018-15671
* Fix CVE-2016-4332
* Fix CVE-2018-11202
* Fix CVE-2018-11205
* Fix CVE-2018-13866
* Fix CVE-2018-13867 and CVE-2018-13871
|
|
|
|
|
|
|
|
|
|
|
| |
* sync cmake and examples changes
* Add java lib changes
* Update jave log files
* Update java logger version
* More logger version changes
|
| |
|
|
|
| |
Mostly .github and config directories
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
| |
* Merge changes from develop
* Store name for last snapshot
* Merge bbrelease into release
|
| |
|
|
|
|
| |
* Update actions for release option, fix branch for daily build
* Scheduled workflows run on latest commit on the develop
|
| |
|
| |
|
|
|
|
|
|
|
|
|
| |
* Merges from develop/1.14
* Fix doxygen warnings
* Fix spelling
* Fix doxygen ref
* Add braces
* Fix format
* Remove unused file
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Previously, cmakehdf5 turned on compiling of the java interface
by default due to a value set in cacheinit.cmake.
Now, consistent with how Fortran and CPP interfaces are handled,
the script overwrites this default value to disable the libraries,
fixing #2958.
I also implemented the --enable-java/--disable java options for
cmakehdf5, and -java for buildhdf5.
Allen said these scripts should mention that
compilers are to be specified in environment variables, but missing
compilers causes errors at the CMake level, and
CMake's error messages are already pretty informative (See the one
in #2958 about JAVA_COMPILER).
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
| |
* Add DT workflows and update windows preset
* Stagger check time
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Fix for HDFFV-11052: h5debug fails on a corrupted file (h5_nrefs_POC) producing a core dump.
When h5debug closes the corrupted file, the library calls H5F__dest() which performs all the
closing operations for the file "f" (H5F_t *) but just keeping note of errors in "ret_value"
all the way till the end of the routine. The user-provided corrupted file has an illegal
file size causing failure when reading the image during the closing process.
At the end of this routine it sets f->shared to NULL and then frees "f".
This is done whether there is error or not in "ret_value".
Due to the failure in reading the file earlier, the routine then returns error.
The error return from H5F__dest() causes the file object "f" not being removed from the
ID node table. When the library finally exits, it will try to close the
file objects in the table. This causes assertion failure for f->file_id > 0.
Fix:
a) H5F_dest(): free the f only when there is no error in "ret_value" at the end of the routine.
b) H5F__close_cb(): if f->shared is NULL, free "f"; otherwise, perform closing on "f" as before.
c) h5debug.c main(): track error return from H5Fclose().
|
| |
|