Skip to content

chore(deps): bump hashbrown from 0.16.1 to 0.17.0#21611

Merged
Dandandan merged 1 commit intomainfrom
dependabot/cargo/main/hashbrown-0.17.0
Apr 14, 2026
Merged

chore(deps): bump hashbrown from 0.16.1 to 0.17.0#21611
Dandandan merged 1 commit intomainfrom
dependabot/cargo/main/hashbrown-0.17.0

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Apr 14, 2026

Bumps hashbrown from 0.16.1 to 0.17.0.

Release notes

Sourced from hashbrown's releases.

v0.17.0

Added

  • Added hash_table::OccupiedEntry::replace_entry_with (#669)
  • Added hash_map::{OccupiedEntry::into_entry, VacantEntryRef::insert_entry_with_key} (#670)
  • Added hash_table::UnsafeIter (#667)
  • Added iter methods to various HashTable iterators (#667)
  • Added HashMap::{replace_key,replace_key_unchecked,insert_with_key_unchecked} (#681)
  • Added into_map methods to all HashMap entry types (#686)
  • Added into_table methods to all HashTable entry types (#686)
  • Added #[must_use] to constructors (#697)
  • TryReserveError now implements Error (#698)

Changed

  • Changed EntryRef to use ToOwned (#670)
  • Bumped MSRV to 1.85 (2024 edition) (#676)

Fixed

  • HashTable:clone_from now forwards to RawTable::clone_from instead of using the default implementation (#668)
  • Fixed potential UB in RawTableInner::fallible_with_capacity (#692)
  • Fixed incorrect length if a hasher panics during rehash (#710)
Changelog

Sourced from hashbrown's changelog.

0.17.0 - 2026-04-06

Added

  • Added hash_table::OccupiedEntry::replace_entry_with (#669)
  • Added hash_map::{OccupiedEntry::into_entry, VacantEntryRef::insert_entry_with_key} (#670)
  • Added hash_table::UnsafeIter (#667)
  • Added iter methods to various HashTable iterators (#667)
  • Added HashMap::{replace_key,replace_key_unchecked,insert_with_key_unchecked} (#681)
  • Added into_map methods to all HashMap entry types (#686)
  • Added into_table methods to all HashTable entry types (#686)
  • Added #[must_use] to constructors (#697)
  • TryReserveError now implements Error (#698)

Changed

  • Changed EntryRef to use ToOwned (#670)
  • Bumped MSRV to 1.85 (2024 edition) (#676)

Fixed

  • HashTable:clone_from now forwards to RawTable::clone_from instead of using the default implementation (#668)
  • Fixed potential UB in RawTableInner::fallible_with_capacity (#692)
  • Fixed incorrect length if a hasher panics during rehash (#710)
Commits
  • d290456 Bump version to 0.17.0
  • d937c63 Update changelog for version 0.17.0
  • 4a6fba6 chore: release v0.16.2
  • 3b6489a Merge pull request #710 from Amanieu/fix-rehash-unwind
  • 375087f Reduce test runtime on Miri
  • b1c4403 Merge pull request #709 from 0xdeafbeef/benches
  • e542702 Merge benches; split bench helpers
  • 3d1517f Check benches with clippy, don't run ever on CI
  • e82981c chore: move to criterion benches from nightly
  • 6cb0eb5 Fix incorrect length if a hasher panics during rehash
  • 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 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 [hashbrown](https://github.com/rust-lang/hashbrown) from 0.16.1 to 0.17.0.
- [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.16.1...v0.17.0)

---
updated-dependencies:
- dependency-name: hashbrown
  dependency-version: 0.17.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@Dandandan Dandandan added this pull request to the merge queue Apr 14, 2026
Merged via the queue into main with commit 90521e8 Apr 14, 2026
63 checks passed
@Dandandan Dandandan deleted the dependabot/cargo/main/hashbrown-0.17.0 branch April 14, 2026 09:58
Rich-T-kid pushed a commit to Rich-T-kid/datafusion that referenced this pull request Apr 21, 2026
Bumps [hashbrown](https://github.com/rust-lang/hashbrown) from 0.16.1 to
0.17.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/rust-lang/hashbrown/releases">hashbrown's
releases</a>.</em></p>
<blockquote>
<h2>v0.17.0</h2>
<h3>Added</h3>
<ul>
<li>Added <code>hash_table::OccupiedEntry::replace_entry_with</code> (<a
href="https://redirect.github.com/rust-lang/hashbrown/issues/669">#669</a>)</li>
<li>Added <code>hash_map::{OccupiedEntry::into_entry,
VacantEntryRef::insert_entry_with_key}</code> (<a
href="https://redirect.github.com/rust-lang/hashbrown/issues/670">#670</a>)</li>
<li>Added <code>hash_table::UnsafeIter</code> (<a
href="https://redirect.github.com/rust-lang/hashbrown/issues/667">#667</a>)</li>
<li>Added <code>iter</code> methods to various <code>HashTable</code>
iterators (<a
href="https://redirect.github.com/rust-lang/hashbrown/issues/667">#667</a>)</li>
<li>Added
<code>HashMap::{replace_key,replace_key_unchecked,insert_with_key_unchecked}</code>
(<a
href="https://redirect.github.com/rust-lang/hashbrown/issues/681">#681</a>)</li>
<li>Added <code>into_map</code> methods to all <code>HashMap</code>
entry types (<a
href="https://redirect.github.com/rust-lang/hashbrown/issues/686">#686</a>)</li>
<li>Added <code>into_table</code> methods to all <code>HashTable</code>
entry types (<a
href="https://redirect.github.com/rust-lang/hashbrown/issues/686">#686</a>)</li>
<li>Added <code>#[must_use]</code> to constructors (<a
href="https://redirect.github.com/rust-lang/hashbrown/issues/697">#697</a>)</li>
<li><code>TryReserveError</code> now implements <code>Error</code> (<a
href="https://redirect.github.com/rust-lang/hashbrown/issues/698">#698</a>)</li>
</ul>
<h3>Changed</h3>
<ul>
<li>Changed <code>EntryRef</code> to use <code>ToOwned</code> (<a
href="https://redirect.github.com/rust-lang/hashbrown/issues/670">#670</a>)</li>
<li>Bumped MSRV to 1.85 (2024 edition) (<a
href="https://redirect.github.com/rust-lang/hashbrown/issues/676">#676</a>)</li>
</ul>
<h3>Fixed</h3>
<ul>
<li><code>HashTable:clone_from</code> now forwards to
<code>RawTable::clone_from</code> instead of using the default
implementation (<a
href="https://redirect.github.com/rust-lang/hashbrown/issues/668">#668</a>)</li>
<li>Fixed potential UB in
<code>RawTableInner::fallible_with_capacity</code> (<a
href="https://redirect.github.com/rust-lang/hashbrown/issues/692">#692</a>)</li>
<li>Fixed incorrect length if a hasher panics during rehash (<a
href="https://redirect.github.com/rust-lang/hashbrown/issues/710">#710</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/rust-lang/hashbrown/blob/master/CHANGELOG.md">hashbrown's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/rust-lang/hashbrown/compare/v0.16.1...v0.17.0">0.17.0</a>
- 2026-04-06</h2>
<h3>Added</h3>
<ul>
<li>Added <code>hash_table::OccupiedEntry::replace_entry_with</code> (<a
href="https://redirect.github.com/rust-lang/hashbrown/issues/669">#669</a>)</li>
<li>Added <code>hash_map::{OccupiedEntry::into_entry,
VacantEntryRef::insert_entry_with_key}</code> (<a
href="https://redirect.github.com/rust-lang/hashbrown/issues/670">#670</a>)</li>
<li>Added <code>hash_table::UnsafeIter</code> (<a
href="https://redirect.github.com/rust-lang/hashbrown/issues/667">#667</a>)</li>
<li>Added <code>iter</code> methods to various <code>HashTable</code>
iterators (<a
href="https://redirect.github.com/rust-lang/hashbrown/issues/667">#667</a>)</li>
<li>Added
<code>HashMap::{replace_key,replace_key_unchecked,insert_with_key_unchecked}</code>
(<a
href="https://redirect.github.com/rust-lang/hashbrown/issues/681">#681</a>)</li>
<li>Added <code>into_map</code> methods to all <code>HashMap</code>
entry types (<a
href="https://redirect.github.com/rust-lang/hashbrown/issues/686">#686</a>)</li>
<li>Added <code>into_table</code> methods to all <code>HashTable</code>
entry types (<a
href="https://redirect.github.com/rust-lang/hashbrown/issues/686">#686</a>)</li>
<li>Added <code>#[must_use]</code> to constructors (<a
href="https://redirect.github.com/rust-lang/hashbrown/issues/697">#697</a>)</li>
<li><code>TryReserveError</code> now implements <code>Error</code> (<a
href="https://redirect.github.com/rust-lang/hashbrown/issues/698">#698</a>)</li>
</ul>
<h3>Changed</h3>
<ul>
<li>Changed <code>EntryRef</code> to use <code>ToOwned</code> (<a
href="https://redirect.github.com/rust-lang/hashbrown/issues/670">#670</a>)</li>
<li>Bumped MSRV to 1.85 (2024 edition) (<a
href="https://redirect.github.com/rust-lang/hashbrown/issues/676">#676</a>)</li>
</ul>
<h3>Fixed</h3>
<ul>
<li><code>HashTable:clone_from</code> now forwards to
<code>RawTable::clone_from</code> instead of using the default
implementation (<a
href="https://redirect.github.com/rust-lang/hashbrown/issues/668">#668</a>)</li>
<li>Fixed potential UB in
<code>RawTableInner::fallible_with_capacity</code> (<a
href="https://redirect.github.com/rust-lang/hashbrown/issues/692">#692</a>)</li>
<li>Fixed incorrect length if a hasher panics during rehash (<a
href="https://redirect.github.com/rust-lang/hashbrown/issues/710">#710</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/rust-lang/hashbrown/commit/d290456969d0e89e6799d8a673c95112962b70ec"><code>d290456</code></a>
Bump version to 0.17.0</li>
<li><a
href="https://github.com/rust-lang/hashbrown/commit/d937c631cc8144ca744c3b72c463b189561af37c"><code>d937c63</code></a>
Update changelog for version 0.17.0</li>
<li><a
href="https://github.com/rust-lang/hashbrown/commit/4a6fba6e3b83d40189592d476ebe710b70b34bdd"><code>4a6fba6</code></a>
chore: release v0.16.2</li>
<li><a
href="https://github.com/rust-lang/hashbrown/commit/3b6489a2c174e6625495bbf7e133d27fd443d317"><code>3b6489a</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/hashbrown/issues/710">#710</a>
from Amanieu/fix-rehash-unwind</li>
<li><a
href="https://github.com/rust-lang/hashbrown/commit/375087ffbc700af1675a7e36b35a446a574c93ec"><code>375087f</code></a>
Reduce test runtime on Miri</li>
<li><a
href="https://github.com/rust-lang/hashbrown/commit/b1c4403d573a8fd83ecc2f54c0f1b407f1b86d24"><code>b1c4403</code></a>
Merge pull request <a
href="https://redirect.github.com/rust-lang/hashbrown/issues/709">#709</a>
from 0xdeafbeef/benches</li>
<li><a
href="https://github.com/rust-lang/hashbrown/commit/e54270217f947952320e0f4c410be8e65237131a"><code>e542702</code></a>
Merge benches; split bench helpers</li>
<li><a
href="https://github.com/rust-lang/hashbrown/commit/3d1517f7339df628412fddf72f793436bbaba81d"><code>3d1517f</code></a>
Check benches with clippy, don't run ever on CI</li>
<li><a
href="https://github.com/rust-lang/hashbrown/commit/e82981cca90f4b3b9bd2504be19e6eba385e7e05"><code>e82981c</code></a>
chore: move to criterion benches from nightly</li>
<li><a
href="https://github.com/rust-lang/hashbrown/commit/6cb0eb5c55140e110ca30da1138ca763f6cebc47"><code>6cb0eb5</code></a>
Fix incorrect length if a hasher panics during rehash</li>
<li>Additional commits viewable in <a
href="https://github.com/rust-lang/hashbrown/compare/v0.16.1...v0.17.0">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=hashbrown&package-manager=cargo&previous-version=0.16.1&new-version=0.17.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

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-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

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


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
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.

1 participant