summaryrefslogtreecommitdiffstats
path: root/release_docs
diff options
context:
space:
mode:
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