diff options
author | Allen Byrne <50328838+byrnHDF@users.noreply.github.com> | 2023-06-13 23:14:12 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-13 23:14:12 (GMT) |
commit | 3d231bd0c018c4ac7a78640a51d404332a712d72 (patch) | |
tree | fa3909104ef9fed8cb129fbec97a42c1e47daa37 /release_docs | |
parent | bfeb1b0dd5b7b2e4a706ff9b9515bba15e673f31 (diff) | |
download | hdf5-3d231bd0c018c4ac7a78640a51d404332a712d72.zip hdf5-3d231bd0c018c4ac7a78640a51d404332a712d72.tar.gz hdf5-3d231bd0c018c4ac7a78640a51d404332a712d72.tar.bz2 |
merges from develop (#3115)
* Fix release action that allows files to be uploaded.
* Add autotools h5copy help test.
* Update cmake tools.cmake file for clang-tidy.
* CMake build is missing H5FDsubfiling.h
* Correct snapshot location
* Add note for issue 3056
Diffstat (limited to 'release_docs')
-rw-r--r-- | release_docs/RELEASE.txt | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index a163f35..c59aeca 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -114,7 +114,15 @@ Bug Fixes since HDF5-1.14.1 release Java Library ------------ - - + - Fixed switch case 'L' block missing a break statement. + + The HDF5Array.arrayify method is missing a break statement in the case 'L': section + which causes it to fall through and throw an HDF5JavaException when attempting to + read an Array[Array[Long]]. + + The error was fixed by inserting a break statement at the end of the case 'L': sections. + + Fixes GitHub issue #3056 Configuration |