summaryrefslogtreecommitdiffstats
path: root/release_docs
diff options
context:
space:
mode:
authorAllen Byrne <50328838+byrnHDF@users.noreply.github.com>2023-06-19 05:21:40 (GMT)
committerGitHub <noreply@github.com>2023-06-19 05:21:40 (GMT)
commitd31a017e6c15fcb5f8ed16806b7259eadb8c350a (patch)
tree03bff3009a78b2fdded29b96c5f4efd151a3a97b /release_docs
parent622e3b762917061cd226e2d1659ec8e7076bece3 (diff)
downloadhdf5-d31a017e6c15fcb5f8ed16806b7259eadb8c350a.zip
hdf5-d31a017e6c15fcb5f8ed16806b7259eadb8c350a.tar.gz
hdf5-d31a017e6c15fcb5f8ed16806b7259eadb8c350a.tar.bz2
Various merges from develop (#3135)
* Merges from develop/1.14 * Fix doxygen warnings * Fix spelling * Fix doxygen ref * Add braces * Fix format * Remove unused file
Diffstat (limited to 'release_docs')
-rw-r--r--release_docs/RELEASE.txt20
1 files changed, 16 insertions, 4 deletions
diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt
index 3034ba5..6c55488 100644
--- a/release_docs/RELEASE.txt
+++ b/release_docs/RELEASE.txt
@@ -89,7 +89,11 @@ New Features
Java Library:
-------------
- -
+ - HDF5GroupInfo class has been deprecated.
+
+ This class assumes that an object can contain four values which uniquely identify an
+ object among those HDF5 files which are open. This is no longer valid in future
+ HDF5 releases.
Tools:
@@ -174,7 +178,7 @@ Bug Fixes since HDF5-1.10.10 release
checkings will remove the potential invalid read of any of these
values that could be triggered by a malformed file.
- (BMR - 2023/04/12 GH-2603)
+ Fixes GitHub issue #2603
- Fixed potential buffer overrun issues in some object header decode routines
@@ -210,7 +214,7 @@ Bug Fixes since HDF5-1.10.10 release
The fix ensures each element is within bounds before reading.
- Fix for Jira issue HDFFV-10712, CVE-2019-8396, GitHub issue #2209
+ Fixes Jira issue HDFFV-10712, CVE-2019-8396, GitHub issue #2209
- Memory leak
@@ -228,7 +232,15 @@ Bug Fixes since HDF5-1.10.10 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