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.27 #423

Closed dependabot[bot] closed 3 weeks ago

dependabot[bot] commented 1 month ago

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

Release notes

Sourced from PureHDF's releases.

v1.0.0-beta.27

Features

  • Added soft link support

Performance

  • The lookup performance of chunks in the chunk cache has been improved.
  • Read performance of chunked datasets encoded with the fixed array index has been improved.

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)

... (truncated)

Changelog

Sourced from PureHDF's changelog.

v1.0.0-beta.27 - 2024-06-21

Features

  • Added soft link support

Performance

  • The lookup performance of chunks in the chunk cache has been improved.
  • Read performance of chunked datasets encoded with the fixed array index has been improved.

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

... (truncated)

Commits
  • 12739ab Merge commit '2ee6f45693b82cc12b438f4eb9d8ee561f891a79'
  • 2ee6f45 Merge commit '87fcdd7880f546282dd596b36f1c6125ce738bdc' into dev
  • 87fcdd7 Improve performance of chunked datasets encoded with the fixed array index an...
  • 73bee5e Add cache
  • fee1b44 Improve chunk lookup performance by 50%
  • 39e8b41 Add soft link support
  • 18c42de fix: Read data length from data type (#106)
  • 60dc7ec Fix opaque writing tests
  • 06bb32b Merge commit '66b9140a1fcf8c1aa39751294bde80a7d738153f'
  • 66b9140 Fix tests
  • 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 3 weeks ago

Superseded by #424.