Releases: jamesmudd/jhdf
Releases · jamesmudd/jhdf
Release v0.6.8
Release v0.6.7
Release v0.6.6
- Add support for slicing of contiguous datasets. This adds a new method
Dataset#getData(long[] sliceOffset, int[] sliceDimensions)
allowing you to read sections of a dataset that would otherwise be too large in memory. Note: chunked dataset slicing support is still missing. #52 #361 - Fix OSGi
Export-Package
header resulting in API access restriction when running in OSGi. #365 #367 - Dependency and CI updates
Release v0.6.5
Release v0.6.4
- Fix issue with byte shuffle filter when data length is not a multiple of element length. #318
- Improve testing of byte shuffle and deflate filters
- Add validation running on Java 17
Release v0.6.3
Release v0.6.2
- Breaking API change Dataset#getMaxSize not returns
long[]
allowing files with max sizes larger thanint
max to be opened. #283 - Add support for opaque datatype #264
- Improve chunked dataset read performance with default logging #267
- Dependency updates
- Add GitHub Actions CI
- Switch away from Bintray #250
Release v0.6.1
Release v0.6.0
- Adds support for reading in-memory files from
byte[]
orByteBuffers
#245 - Breaking API change To support in-memory files
HdfFile#getHdfChannel
is replaced byHdfFile#getHdfBackingStorage
which now returns aHdfBackingStorage
. Internally the new interface replaces the use ofHdfFileChannel
- Fix #247 reading empty arrays in variable length datasets
- Dependency updates
- Update Gradle
Release v0.5.11
- Add LZF compression support allowing LZF datasets to be read. #239
- Test dependency updates