You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@arrow.apache.org by "dependabot[bot] (via GitHub)" <gi...@apache.org> on 2023/06/06 08:59:36 UTC

[GitHub] [arrow-datafusion] dependabot[bot] opened a new pull request, #6547: chore(deps): update hashbrown requirement from 0.13 to 0.14

dependabot[bot] opened a new pull request, #6547:
URL: https://github.com/apache/arrow-datafusion/pull/6547

   Updates the requirements on [hashbrown](https://github.com/rust-lang/hashbrown) to permit the latest version.
   <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>[v0.14.0] - 2023-06-01</h2>
   <h3>Added</h3>
   <ul>
   <li>Support for <code>allocator-api2</code> crate
   for interfacing with custom allocators on stable. (<a href="https://redirect.github.com/rust-lang/hashbrown/issues/417">#417</a>)</li>
   <li>Optimized implementation for ARM using NEON instructions. (<a href="https://redirect.github.com/rust-lang/hashbrown/issues/430">#430</a>)</li>
   <li>Support for rkyv serialization. (<a href="https://redirect.github.com/rust-lang/hashbrown/issues/432">#432</a>)</li>
   <li><code>Equivalent</code> trait to look up values without <code>Borrow</code>. (<a href="https://redirect.github.com/rust-lang/hashbrown/issues/345">#345</a>)</li>
   <li><code>Hash{Map,Set}::raw_table_mut</code> is added whic returns a mutable reference. (<a href="https://redirect.github.com/rust-lang/hashbrown/issues/404">#404</a>)</li>
   <li>Fast path for <code>clear</code> on empty tables. (<a href="https://redirect.github.com/rust-lang/hashbrown/issues/428">#428</a>)</li>
   </ul>
   <h3>Changed</h3>
   <ul>
   <li>Optimized insertion to only perform a single lookup. (<a href="https://redirect.github.com/rust-lang/hashbrown/issues/277">#277</a>)</li>
   <li><code>DrainFilter</code> has been renamed to <code>ExtractIf</code> and no longer drops remaining
   elements when the iterator is dropped. #(374)</li>
   <li>Bumped MSRV to 1.64.0. (<a href="https://redirect.github.com/rust-lang/hashbrown/issues/431">#431</a>)</li>
   <li><code>{Map,Set}::raw_table</code> now returns an immutable reference. (<a href="https://redirect.github.com/rust-lang/hashbrown/issues/404">#404</a>)</li>
   <li><code>VacantEntry</code> and <code>OccupiedEntry</code> now use the default hasher if none is
   specified in generics. (<a href="https://redirect.github.com/rust-lang/hashbrown/issues/389">#389</a>)</li>
   <li><code>RawTable::data_start</code> now returns a <code>NonNull</code> to match <code>RawTable::data_end</code>. (<a href="https://redirect.github.com/rust-lang/hashbrown/issues/387">#387</a>)</li>
   <li><code>RawIter::{reflect_insert, reflect_remove}</code> are now unsafe. (<a href="https://redirect.github.com/rust-lang/hashbrown/issues/429">#429</a>)</li>
   <li><code>RawTable::find_potential</code> is renamed to <code>find_or_find_insert_slot</code> and returns an <code>InsertSlot</code>. (<a href="https://redirect.github.com/rust-lang/hashbrown/issues/429">#429</a>)</li>
   <li><code>RawTable::remove</code> now also returns an <code>InsertSlot</code>. (<a href="https://redirect.github.com/rust-lang/hashbrown/issues/429">#429</a>)</li>
   <li><code>InsertSlot</code> can be used to insert an element with <code>RawTable::insert_in_slot</code>. (<a href="https://redirect.github.com/rust-lang/hashbrown/issues/429">#429</a>)</li>
   <li><code>RawIterHash</code> no longer has a lifetime tied to that of the <code>RawTable</code>. (<a href="https://redirect.github.com/rust-lang/hashbrown/issues/427">#427</a>)</li>
   <li>The trait bounds of <code>HashSet::raw_table</code> have been relaxed to not require <code>Eq + Hash</code>. (<a href="https://redirect.github.com/rust-lang/hashbrown/issues/423">#423</a>)</li>
   <li><code>EntryRef::and_replace_entry_with</code> and <code>OccupiedEntryRef::replace_entry_with</code>
   were changed to give a <code>&amp;K</code> instead of a <code>&amp;Q</code> to the closure.</li>
   </ul>
   <h3>Removed</h3>
   <ul>
   <li>Support for <code>bumpalo</code> as an allocator with custom wrapper.
   Use <code>allocator-api2</code> feature in <code>bumpalo</code> to use it as an allocator
   for <code>hashbrown</code> collections. (<a href="https://redirect.github.com/rust-lang/hashbrown/issues/417">#417</a>)</li>
   </ul>
   <h2>[v0.13.2] - 2023-01-12</h2>
   <h3>Fixed</h3>
   <ul>
   <li>Added <code>#[inline(always)]</code> to <code>find_inner</code>. (<a href="https://redirect.github.com/rust-lang/hashbrown/issues/375">#375</a>)</li>
   <li>Fixed <code>RawTable::allocation_info</code> for empty tables. (<a href="https://redirect.github.com/rust-lang/hashbrown/issues/376">#376</a>)</li>
   </ul>
   <h2>[v0.13.1] - 2022-11-10</h2>
   <h3>Added</h3>
   <ul>
   <li>Added <code>Equivalent</code> trait to customize key lookups. (<a href="https://redirect.github.com/rust-lang/hashbrown/issues/350">#350</a>)</li>
   <li>Added support for 16-bit targets. (<a href="https://redirect.github.com/rust-lang/hashbrown/issues/368">#368</a>)</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/3056ee976adaa39f5b502db7441b33ffab372ab6"><code>3056ee9</code></a> Auto merge of <a href="https://redirect.github.com/rust-lang/hashbrown/issues/434">#434</a> - Amanieu:release-0.14.0, r=Amanieu</li>
   <li><a href="https://github.com/rust-lang/hashbrown/commit/32b125ea62680aac4ecc1107cf2d927b6f15232b"><code>32b125e</code></a> Update CHANGELOG.md</li>
   <li><a href="https://github.com/rust-lang/hashbrown/commit/c5e0388b4b4678693e780b491bd883c50c4ec586"><code>c5e0388</code></a> Prepare release of v0.14.0</li>
   <li><a href="https://github.com/rust-lang/hashbrown/commit/3784c2fd96884a55fb3b27fd27d896b0090cb897"><code>3784c2f</code></a> Auto merge of <a href="https://redirect.github.com/rust-lang/hashbrown/issues/433">#433</a> - Amanieu:internal_cleanups, r=Amanieu</li>
   <li><a href="https://github.com/rust-lang/hashbrown/commit/9f20bd03377ed725ff125db1bcbabf8c11cd81c7"><code>9f20bd0</code></a> Replace <code>intrinsics::cttz_nonzero</code> with <code>NonZero::trailing_zeros</code></li>
   <li><a href="https://github.com/rust-lang/hashbrown/commit/d677fd42df6978522045a9561242588ef970ed0c"><code>d677fd4</code></a> Remove backup implementation of likely/unlikely that didn't work</li>
   <li><a href="https://github.com/rust-lang/hashbrown/commit/4d8c0594550459152100728fba6a7cfc4d0118ad"><code>4d8c059</code></a> Enable <code>bumpalo/allocator-api2</code> in dev-dependencies for doc-tests</li>
   <li><a href="https://github.com/rust-lang/hashbrown/commit/bceae1e83dcf7e3fde298343085896f7e7c840cf"><code>bceae1e</code></a> Remove redundant <code>make_insert_hash</code> internal function</li>
   <li><a href="https://github.com/rust-lang/hashbrown/commit/f552bdb4eca07ca892c0a492354b5840bb3110f9"><code>f552bdb</code></a> Auto merge of <a href="https://redirect.github.com/rust-lang/hashbrown/issues/432">#432</a> - Amanieu:rkyv, r=Amanieu</li>
   <li><a href="https://github.com/rust-lang/hashbrown/commit/33afe8fe0fd954447ed57bb951aeb1e9ca5246f1"><code>33afe8f</code></a> Auto merge of <a href="https://redirect.github.com/rust-lang/hashbrown/issues/431">#431</a> - Amanieu:msrv-1.64, r=Amanieu</li>
   <li>Additional commits viewable in <a href="https://github.com/rust-lang/hashbrown/compare/v0.13.1...v0.14.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 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)
   
   
   </details>


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow-datafusion] alamb commented on pull request #6547: chore(deps): update hashbrown requirement from 0.13 to 0.14

Posted by "alamb (via GitHub)" <gi...@apache.org>.
alamb commented on PR #6547:
URL: https://github.com/apache/arrow-datafusion/pull/6547#issuecomment-1579313705

   Closed by https://github.com/apache/arrow-datafusion/pull/6562


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow-datafusion] dependabot[bot] commented on pull request #6547: chore(deps): update hashbrown requirement from 0.13 to 0.14

Posted by "dependabot[bot] (via GitHub)" <gi...@apache.org>.
dependabot[bot] commented on PR #6547:
URL: https://github.com/apache/arrow-datafusion/pull/6547#issuecomment-1579313808

   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](https://docs.github.com/en/code-security/supply-chain-security/configuration-options-for-dependency-updates#ignore) 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.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow-datafusion] alamb closed pull request #6547: chore(deps): update hashbrown requirement from 0.13 to 0.14

Posted by "alamb (via GitHub)" <gi...@apache.org>.
alamb closed pull request #6547: chore(deps): update hashbrown requirement from 0.13 to 0.14
URL: https://github.com/apache/arrow-datafusion/pull/6547


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org