You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Added method `try_borrow` on `Handle` for not taking ownership of an HDF5 object.
56
+
55
57
### Changed
56
58
57
59
- Required Rust compiler version is now `1.51`.
@@ -78,6 +80,12 @@
78
80
-`silence_errors` now work globally and will not be reset on dropping `SilenceErrors`.
79
81
- Errors are not expanded when encountered, but only when being used for printing or by
80
82
the library user.
83
+
- Handles to `hdf5` identifiers are no longer tracked via a registry and is instead handled by stricter semantics of ownership.
84
+
- The handle to a `File` will not close all objects in a `File` when dropped, but instead uses a weak file close degree. For the old behaviour see `FileCloseDegree::Strong`.
85
+
86
+
### Fixed
87
+
88
+
- A memory leak of handles has been identified and fixed.
0 commit comments