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

build(deps): update hashbrown requirement from 0.9 to 0.11 #1496

Merged
merged 2 commits into from Mar 25, 2021

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 15, 2021

Updates the requirements on hashbrown to permit the latest version.

Changelog

Sourced from hashbrown's changelog.

[v0.11.0] - 2021-03-14

Added

  • Added safe try_insert_no_grow method to RawTable. (#229)
  • Added support for bumpalo as an allocator without the nightly feature. (#231)
  • Implemented Default for RawTable. (#237)
  • Added new safe methods RawTable::get_each_mut, HashMap::get_each_mut, and HashMap::get_each_key_value_mut. (#239)
  • Added From<HashMap<T, ()>> for HashSet<T>. (#235)
  • Added try_insert method to HashMap. (#247)

Changed

  • The minimum Rust version has been bumped to 1.49.0. (#230)
  • Significantly improved compilation times by reducing the amount of generated IR. (#205)

Removed

  • We no longer re-export the unstable allocator items from the standard library, nor the stable shims approximating the same. (#227)
  • Removed hasher specialization support from aHash, which was resulting in inconsistent hashes being generated for a key. (#248)

Fixed

  • Fixed union length comparison. (#228)

[v0.10.0] - 2021-01-16

This release was yanked due to inconsistent hashes being generated with the nightly feature. (#248)

Changed

  • Parametrized RawTable, HashSet and HashMap over an allocator. (#133)
  • Improved branch prediction hints on stable. (#209)
  • Optimized hashing of primitive types with AHash using specialization. (#207)
  • Only instantiate RawTable's reserve functions once per key-value. (#204)

[v0.9.1] - 2020-09-28

Added

  • Added safe methods to RawTable (#202):
    • get: find and as_ref
    • get_mut: find and as_mut
    • insert_entry: insert and as_mut
    • remove_entry: find and remove
    • erase_entry: find and erase

Changed

  • Removed from_key_hashed_nocheck's Q: Hash. (#200)
  • Made RawTable::drain safe. (#201)

[v0.9.0] - 2020-09-03

Fixed

  • drain_filter now removes and yields items that do match the predicate,

... (truncated)

Commits
  • edeb8f7 Version 0.11.0
  • b50e258 Merge pull request #249 from cole-miller/get-each-mut-cleanup
  • 6a22e91 Tidy get_each_mut documentation and add a changelog entry
  • 0c8f029 Auto merge of #248 - Amanieu:remove_specialization, r=Amanieu
  • 2297523 Auto merge of #247 - Amanieu:try_insert, r=Amanieu
  • 76f8cf8 Add try_insert
  • 39df601 Auto merge of #245 - notriddle:patch-1, r=Amanieu
  • ae5eaa7 Auto merge of #246 - Amanieu:fix_clippy, r=Amanieu
  • 24e8661 Allow clippy::manual_map
  • 8223104 Delete bors.toml
  • 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 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)

Updates the requirements on [hashbrown](https://github.com/rust-lang/hashbrown) to permit the latest version.
- [Release notes](https://github.com/rust-lang/hashbrown/releases)
- [Changelog](https://github.com/rust-lang/hashbrown/blob/master/CHANGELOG.md)
- [Commits](rust-lang/hashbrown@v0.9.0...v0.11.0)

Signed-off-by: dependabot[bot] <support@github.com>
@davidhewitt
Copy link
Member

I think we can consider having a range dependency hashbrown = ">=0.9, <0.12" ?

@dependabot dependabot bot changed the base branch from master to main March 16, 2021 22:09
An error occurred while trying to automatically change base from master to main March 16, 2021 22:09
@messense
Copy link
Member

Note the new MSRV:

The minimum Rust version has been bumped to 1.49.0

It's actually compatible with Rust 1.38.0 hence the green CI, we just can't make sure it will stay so in future 0.11.x releases.

@davidhewitt davidhewitt force-pushed the dependabot/cargo/hashbrown-0.11 branch from 9bed3df to a2788b0 Compare March 24, 2021 22:35
@davidhewitt
Copy link
Member

I've pushed a commit to use a range dependency (and force hashbrown 0.9.1 in MSRV CI). Assuming CI is green, I think this is good to merge.

@davidhewitt davidhewitt merged commit 9369688 into main Mar 25, 2021
@dependabot dependabot bot deleted the dependabot/cargo/hashbrown-0.11 branch March 25, 2021 08:01
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants