Skip to content

chore(deps): update hashbrown requirement from 0.16.0 to 0.17.0#9691

Merged
alamb merged 1 commit into
mainfrom
dependabot/cargo/main/hashbrown-0.17.0
Apr 10, 2026
Merged

chore(deps): update hashbrown requirement from 0.16.0 to 0.17.0#9691
alamb merged 1 commit into
mainfrom
dependabot/cargo/main/hashbrown-0.17.0

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Updates the requirements on hashbrown to permit the latest version.

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)

0.16.1 - 2025-11-20

Added

  • Added HashTable methods related to the raw bucket index (#657)
  • Added VacantEntryRef::insert_with_key (#579)

Changed

  • Removed specialization for Copy types (#662)
  • The get_many_mut family of methods have been renamed to get_disjoint_mut to match the standard library. The old names are still present for now, but deprecated. (#648)
  • Recognize and use over-sized allocations when using custom allocators. (#523)
  • Depend on serde_core instead of serde. (#649)
  • Optimized collect on rayon parallel iterators. (#652)

0.16.0 - 2025-08-28

Changed

  • Bump foldhash, the default hasher, to 0.2.0.
  • Replaced DefaultHashBuilder with a newtype wrapper around foldhash instead of re-exporting it directly.

... (truncated)

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

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.16.0...v0.17.0)

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

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added arrow Changes to the arrow crate auto-dependencies labels Apr 10, 2026
@github-actions github-actions Bot added the parquet Changes to the parquet crate label Apr 10, 2026

@mbutrovich mbutrovich left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Changelog looks reasonable. New APIs for unchecked access and iterators seem interesting.

@alamb alamb left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks @mbutrovich for the review

@alamb

alamb commented Apr 10, 2026

Copy link
Copy Markdown
Contributor

Since I don't think appears in the public API I think this is safe. I'll have codex double check just to be sure

@alamb

alamb commented Apr 10, 2026

Copy link
Copy Markdown
Contributor

Codex also thinks this is not an API change. So merging it in

@alamb alamb merged commit 68851ef into main Apr 10, 2026
29 checks passed
@dependabot dependabot Bot deleted the dependabot/cargo/main/hashbrown-0.17.0 branch April 10, 2026 20:19
Rich-T-kid pushed a commit to Rich-T-kid/arrow-rs that referenced this pull request Jun 2, 2026
…he#9691)

Updates the requirements on
[hashbrown](https://github.com/rust-lang/hashbrown) to permit the latest
version.
<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>
<h2><a
href="https://github.com/rust-lang/hashbrown/compare/v0.16.0...v0.16.1">0.16.1</a>
- 2025-11-20</h2>
<h3>Added</h3>
<ul>
<li>Added <code>HashTable</code> methods related to the raw bucket index
(<a
href="https://redirect.github.com/rust-lang/hashbrown/issues/657">#657</a>)</li>
<li>Added <code>VacantEntryRef::insert_with_key</code> (<a
href="https://redirect.github.com/rust-lang/hashbrown/issues/579">#579</a>)</li>
</ul>
<h3>Changed</h3>
<ul>
<li>Removed specialization for <code>Copy</code> types (<a
href="https://redirect.github.com/rust-lang/hashbrown/issues/662">#662</a>)</li>
<li>The <code>get_many_mut</code> family of methods have been renamed to
<code>get_disjoint_mut</code>
to match the standard library. The old names are still present for now,
but
deprecated. (<a
href="https://redirect.github.com/rust-lang/hashbrown/issues/648">#648</a>)</li>
<li>Recognize and use over-sized allocations when using custom
allocators. (<a
href="https://redirect.github.com/rust-lang/hashbrown/issues/523">#523</a>)</li>
<li>Depend on <code>serde_core</code> instead of <code>serde</code>. (<a
href="https://redirect.github.com/rust-lang/hashbrown/issues/649">#649</a>)</li>
<li>Optimized <code>collect</code> on rayon parallel iterators. (<a
href="https://redirect.github.com/rust-lang/hashbrown/issues/652">#652</a>)</li>
</ul>
<h2><a
href="https://github.com/rust-lang/hashbrown/compare/v0.15.5...v0.16.0">0.16.0</a>
- 2025-08-28</h2>
<h3>Changed</h3>
<ul>
<li>Bump foldhash, the default hasher, to 0.2.0.</li>
<li>Replaced <code>DefaultHashBuilder</code> with a newtype wrapper
around <code>foldhash</code> instead
of re-exporting it directly.</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</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.0...v0.17.0">compare
view</a></li>
</ul>
</details>
<br />


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

Labels

arrow Changes to the arrow crate auto-dependencies parquet Changes to the parquet crate

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants