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.22 #408

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.22.

Release notes

Sourced from PureHDF's releases.

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.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
  • d08cec0 Merge commit '98f9e6b805c7810d9fa975a603f33acd225d9f59'
  • 98f9e6b Fix tests
  • 0aaf1bb Write object reference1 (#99)
  • b2d8ed6 Merge commit '7b3fe7a8c852766bf60c327fa4c0ab9260829bd9'
  • 7b3fe7a Prepare release
  • 79203b4 Read raw (#94)
  • cbc40b2 Merge commit '5dba09f5e4d1c07ae5816844178b5aa37668e4d7' into dev
  • 514e10e Merge commit '5dba09f5e4d1c07ae5816844178b5aa37668e4d7'
  • 5dba09f Prepare release
  • b986c5c Intermediate commit
  • Additional commits viewable in compare view


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 #411.