Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Jun 18, 2024

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 <dependency name> 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)

Bumps [PureHDF](https://github.com/Apollo3zehn/PureHDF) from 1.0.0-beta.18 to 1.0.0-beta.26.
- [Release notes](https://github.com/Apollo3zehn/PureHDF/releases)
- [Changelog](https://github.com/Apollo3zehn/PureHDF/blob/dev/CHANGELOG.md)
- [Commits](Apollo3zehn/PureHDF@v1.0.0-beta.18...v1.0.0-beta.26)

---
updated-dependencies:
- dependency-name: PureHDF
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Jun 18, 2024
Copy link
Author

dependabot bot commented on behalf of github Jun 21, 2024

Superseded by #423.

@dependabot dependabot bot closed this Jun 21, 2024
@dependabot dependabot bot deleted the dependabot/nuget/PureHDF-1.0.0-beta.26 branch June 21, 2024 22:21
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants