LiorBanai / HDF5-CSharp

C# wrapper for windows/Linux systems for reading and writing H5 files
MIT License
54 stars 26 forks source link

Bump PureHDF from 1.0.0-beta.18 to 1.0.0-beta.26 #422

Closed dependabot[bot] closed 1 month ago

dependabot[bot] commented 1 month ago

Bumps PureHDF from 1.0.0-beta.18 to 1.0.0-beta.26.

Release notes

Sourced from PureHDF's releases.

v1.0.0-beta.26

  • Read performance of multidimensional, contiguous, compact or single-chunked datasets has been dramatically improved by adding special case handling which allows bulk copying of data if the whole dataset is to be read (no slicing).

v1.0.0-beta.25

  • Read performance of chunked datasets in the old version 1 B-tree format has been dramatically improved by adding a cache to avoid repeated deserialisation of in-file structures.

v1.0.0-beta.24

Bugs fixed

  • Created a workaround to not throw error "Byte order conversion is not (yet) support by PureHDF." (#101).

v1.0.0-beta.23

Bugs fixed

  • Fixed a bug where objects were encoded more than once (by using object references) and added a circular reference detection.

v1.0.0-beta.22

Features

  • Added write support for object references. Example:
var dataset = new H5Dataset(data: 1);
var group = new H5Group();

var file = new H5File { ["data"] = dataset, ["group"] = group, ["references"] = new H5ObjectReference[] { dataset, group } };

v1.0.0-beta.21

Features

  • Added support to read data as raw byte array use the buffer overload Read(buffer, ...). The buffer variable must be of type byte[] or Memory<byte>, respectively. Cast IH5Dataset to NativeDataset to be able to use Span<byte> as buffer type as well.

v1.0.0-beta.20

Features

  • Added read support for nullable values types. Data must be variable-length sequence of length = 1 to be compatible with nullable value types like int?.

v1.0.0-beta.19

Features

  • Added write support for nullable values types (read support comes with the next version)

Bugs fixed

  • #89 - Nullable Property in compound type leads to exception
Changelog

Sourced from PureHDF's changelog.

v1.0.0-beta.26 - 2024-06-18

  • Read performance of multidimensional, contiguous, compact or single-chunked datasets has been dramatically improved by adding special case handling which allows bulk copying of data if the whole dataset is to be read (no slicing).

v1.0.0-beta.25 - 2024-06-13

  • Read performance of chunked datasets in the old version 1 B-tree format has been dramatically improved by adding a cache to avoid repeated deserialisation of in-file structures.

v1.0.0-beta.24 - 2024-06-13

Bugs fixed

  • Created a workaround to not throw error "Byte order conversion is not (yet) support by PureHDF." (#101).

v1.0.0-beta.23 - 2024-05-30

Bugs fixed

  • Fixed a bug where objects were encoded more than once (by using object references) and added a circular reference detection.

v1.0.0-beta.22 - 2024-05-29

Features

  • Added write support for object references. Example:
var dataset = new H5Dataset(data: 1);
var group = new H5Group();

var file = new H5File { ["data"] = dataset, ["group"] = group, ["references"] = new H5ObjectReference[] { dataset, group } };

v1.0.0-beta.21 - 2024-05-28

Features

  • Added support to read data as raw byte array use the buffer overload Read(buffer, ...). The buffer variable must be of type byte[] or Memory<byte>, respectively. Cast IH5Dataset to NativeDataset to be able to use Span<byte> as buffer type as well.

v1.0.0-beta.20 - 2024-05-28

Features

  • Added read support for nullable values types. Data must be variable-length sequence of length = 1 to be compatible with nullable value types like int?.

v1.0.0-beta.19 - 2024-05-27

Features

  • Added write support for nullable values types (read support comes with the next version)

Bugs fixed

  • #89 - Nullable Property in compound type leads to exception
Commits


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
dependabot[bot] commented 1 month ago

Superseded by #423.