Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 10, 2024

Updates the requirements on twox-hash to permit the latest version.

Changelog

Sourced from twox-hash's changelog.

2.1.0 - 2024-12-09

Added

  • The XXH3 128-bit algorithm is implemented via XxHash3_128 and the xxhash3_128 module.

2.0.1 - 2024-11-04

Fixed

  • Removed a panic that could occur when using XxHash3_64 to hash 1 to 3 bytes of data in debug mode. Release mode and different lengths of data are unaffected.

2.0.0 - 2024-10-18

This release is a complete rewrite of the crate, including reorganization of the code. The XXH3 algorithm now matches the 0.8 release of the reference C xxHash implementation.

Added

  • XxHash32::oneshot and XxHash64::oneshot can perform hashing with zero allocation and generally improved performance. If you have code that creates a hasher and hashes a slice of bytes exactly once, you are strongly encouraged to use the new functions. This might look like:

    // Before
    let mut hasher = XxHash64::new(); // or XxHash32, or with seeds
    some_bytes.hash(&mut hasher);
    let hash = hasher.finish();
    // After
    let hash = XxHash64::oneshot(some_bytes);

  • There is a feature flag for each hashing implementation. It is recommended that you opt-out of the crate's default features and only select the implementations you need to improve compile speed.

Changed

... (truncated)

Commits
  • d66dbf3 Release version 2.1.0
  • 5cbebcf Update the changelog
  • e7c956f Merge pull request #105 from shepmaster/xxh3-128
  • f382d8d Update benchmark results
  • e8e3dc3 Add benchmarks
  • f629e88 Implement streaming entrypoints
  • a9536ed Implement seed and secret entrypoints
  • e47968f Implement oneshot of 241 and up bytes
  • 514343e Implement oneshot of 129 to 240 bytes
  • 91f2ea4 Implement oneshot of 17 to 128 bytes
  • Additional commits viewable in compare view

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)

@dependabot dependabot bot added arrow Changes to the arrow crate auto-dependencies labels Dec 10, 2024
@github-actions github-actions bot added parquet Changes to the parquet crate and removed arrow Changes to the arrow crate labels Dec 10, 2024
Updates the requirements on [twox-hash](https://github.com/shepmaster/twox-hash) to permit the latest version.
- [Changelog](https://github.com/shepmaster/twox-hash/blob/main/CHANGELOG.md)
- [Commits](shepmaster/twox-hash@v1.6.0...v2.1.0)

---
updated-dependencies:
- dependency-name: twox-hash
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/cargo/main/twox-hash-2.1 branch from 0ce8d71 to a2ef0c1 Compare December 16, 2024 21:54
@mbrobbel
Copy link
Member

#6583

@crepererum
Copy link
Contributor

Closing for now.

@crepererum crepererum closed this Dec 18, 2024
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 18, 2024

OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version or @dependabot ignore this minor version. You can also ignore all major, minor, or patch releases for a dependency by adding an ignore condition with the desired update_types to your config file.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

@dependabot dependabot bot deleted the dependabot/cargo/main/twox-hash-2.1 branch December 18, 2024 12:25
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

auto-dependencies parquet Changes to the parquet crate

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants