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

   Updates the requirements on 
[getrandom](https://github.com/rust-random/getrandom) to permit the latest 
version.
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a 
href="https://github.com/rust-random/getrandom/blob/master/CHANGELOG.md";>getrandom's
 changelog</a>.</em></p>
   <blockquote>
   <h2>[0.3.1] - 2025-01-28</h2>
   <h3>Fixed</h3>
   <ul>
   <li>Build error on Android <a 
href="https://redirect.github.com/rust-random/getrandom/issues/588";>#588</a></li>
   </ul>
   <p><a 
href="https://redirect.github.com/rust-random/getrandom/issues/588";>#588</a>: 
<a 
href="https://redirect.github.com/rust-random/getrandom/pull/588";>rust-random/getrandom#588</a></p>
   <h2>[0.3.0] - 2025-01-25</h2>
   <h3>Breaking Changes</h3>
   <h4>Changed</h4>
   <ul>
   <li>Bump MSRV to 1.63 <a 
href="https://redirect.github.com/rust-random/getrandom/issues/542";>#542</a></li>
   <li>Rename <code>getrandom</code> and <code>getrandom_uninit</code> 
functions to <code>fill</code> and <code>fill_uninit</code> respectively <a 
href="https://redirect.github.com/rust-random/getrandom/issues/532";>#532</a></li>
   </ul>
   <h4>Removed</h4>
   <ul>
   <li><code>wasm32-wasi</code> target support (use <code>wasm32-wasip1</code> 
or <code>wasm32-wasip2</code> instead) <a 
href="https://redirect.github.com/rust-random/getrandom/issues/499";>#499</a></li>
   <li><code>linux_disable_fallback</code>, <code>rdrand</code>, 
<code>js</code>, <code>test-in-browser</code>, and <code>custom</code> crate 
features
   in favor of configuration flags <a 
href="https://redirect.github.com/rust-random/getrandom/issues/504";>#504</a></li>
   <li><code>register_custom_getrandom!</code> macro <a 
href="https://redirect.github.com/rust-random/getrandom/issues/504";>#504</a></li>
   <li>Implementation of <code>From&lt;NonZeroU32&gt;</code> for 
<code>Error</code> and <code>Error::code</code> method <a 
href="https://redirect.github.com/rust-random/getrandom/issues/507";>#507</a></li>
   <li>Internet Explorer 11 support <a 
href="https://redirect.github.com/rust-random/getrandom/issues/554";>#554</a></li>
   <li>Target-specific assocciated <code>Error</code> constants <a 
href="https://redirect.github.com/rust-random/getrandom/issues/562";>#562</a></li>
   </ul>
   <h3>Changed</h3>
   <ul>
   <li>Use <code>ProcessPrng</code> on Windows 10 and up, and use 
<code>RtlGenRandom</code> on older Windows versions <a 
href="https://redirect.github.com/rust-random/getrandom/issues/415";>#415</a></li>
   <li>Do not use locale-specific <code>strerror_r</code> for retrieving error 
code descriptions <a 
href="https://redirect.github.com/rust-random/getrandom/issues/440";>#440</a></li>
   <li>Avoid assuming <code>usize</code> is the native word size in the 
<code>rdrand</code> backend <a 
href="https://redirect.github.com/rust-random/getrandom/issues/442";>#442</a></li>
   <li>Do not read from <code>errno</code> when <code>libc</code> did not 
indicate error on Solaris <a 
href="https://redirect.github.com/rust-random/getrandom/issues/448";>#448</a></li>
   <li>Switch from <code>libpthread</code>'s mutex to <code>futex</code> on 
Linux and to <code>nanosleep</code>-based wait loop
   on other targets in the <code>use_file</code> backend <a 
href="https://redirect.github.com/rust-random/getrandom/issues/490";>#490</a></li>
   <li>Do not retry on <code>EAGAIN</code> while polling 
<code>/dev/random</code> on Linux <a 
href="https://redirect.github.com/rust-random/getrandom/issues/522";>#522</a></li>
   <li>Remove separate codepath for Node.js in the <code>wasm_js</code> backend
   (bumps minimum supported Node.js version to v19) <a 
href="https://redirect.github.com/rust-random/getrandom/issues/557";>#557</a></li>
   <li>Use <code>js_namespace</code> in the <code>wasm_js</code> backend <a 
href="https://redirect.github.com/rust-random/getrandom/issues/559";>#559</a></li>
   </ul>
   <h3>Added</h3>
   <ul>
   <li><code>wasm32-wasip1</code> and <code>wasm32-wasip2</code> support <a 
href="https://redirect.github.com/rust-random/getrandom/issues/499";>#499</a></li>
   <li><code>getrandom_backend</code> configuration flag for selection of 
opt-in backends <a 
href="https://redirect.github.com/rust-random/getrandom/issues/504";>#504</a></li>
   <li><code>Error::new_custom</code> method <a 
href="https://redirect.github.com/rust-random/getrandom/issues/507";>#507</a></li>
   <li><code>rndr</code> opt-in backend <a 
href="https://redirect.github.com/rust-random/getrandom/issues/512";>#512</a></li>
   <li>Automatic MemorySanitizer support <a 
href="https://redirect.github.com/rust-random/getrandom/issues/521";>#521</a> <a 
href="https://redirect.github.com/rust-random/getrandom/issues/571";>#571</a></li>
   <li><code>u32</code> and <code>u64</code> functions for generating random 
values of the respective type <a 
href="https://redirect.github.com/rust-random/getrandom/issues/544";>#544</a></li>
   <li><code>wasm32v1-none</code> support in the <code>wasm_js</code> backend 
<a 
href="https://redirect.github.com/rust-random/getrandom/issues/560";>#560</a></li>
   <li><code>wasm_js</code> crate feature which allows users to enable the 
<code>wasm_js</code> opt-in backend <a 
href="https://redirect.github.com/rust-random/getrandom/issues/574";>#574</a></li>
   </ul>
   <h3>Fixed</h3>
   <ul>
   <li>NetBSD fallback code based on <code>KERN_ARND</code> <a 
href="https://redirect.github.com/rust-random/getrandom/issues/555";>#555</a></li>
   </ul>
   <p><a 
href="https://redirect.github.com/rust-random/getrandom/issues/415";>#415</a>: 
<a 
href="https://redirect.github.com/rust-random/getrandom/pull/415";>rust-random/getrandom#415</a></p>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/rust-random/getrandom/commit/2bb39598632af0097426815487f5b33b07edacbc";><code>2bb3959</code></a>
 Release v0.3.1 (<a 
href="https://redirect.github.com/rust-random/getrandom/issues/589";>#589</a>)</li>
   <li><a 
href="https://github.com/rust-random/getrandom/commit/ac379dacbfbcbcc14747a0e014d84d6f24c8140b";><code>ac379da</code></a>
 Fix build error on Android (<a 
href="https://redirect.github.com/rust-random/getrandom/issues/588";>#588</a>)</li>
   <li><a 
href="https://github.com/rust-random/getrandom/commit/aa9636349418ffa58bca6e2884d1bbc63fa1d2fa";><code>aa96363</code></a>
 Add benchmarks for u32/u64 functions. (<a 
href="https://redirect.github.com/rust-random/getrandom/issues/582";>#582</a>)</li>
   <li><a 
href="https://github.com/rust-random/getrandom/commit/e38855c69882c2c1ff7438f9292512a0b91275fe";><code>e38855c</code></a>
 Fix release date for v0.3.0 (<a 
href="https://redirect.github.com/rust-random/getrandom/issues/587";>#587</a>)</li>
   <li><a 
href="https://github.com/rust-random/getrandom/commit/d5683740ef9cd2d0ebfed73f2a629c0ebb47b5e8";><code>d568374</code></a>
 Release v0.3.0 (<a 
href="https://redirect.github.com/rust-random/getrandom/issues/563";>#563</a>)</li>
   <li><a 
href="https://github.com/rust-random/getrandom/commit/5e62ce9fadb401539a08b329e4cbd98cc6393f60";><code>5e62ce9</code></a>
 rndr: minor tweaks (<a 
href="https://redirect.github.com/rust-random/getrandom/issues/586";>#586</a>)</li>
   <li><a 
href="https://github.com/rust-random/getrandom/commit/3d0c01c35231b40f58b49f4455797c85c2e8c042";><code>3d0c01c</code></a>
 ci: disable broken Solaris and Emscripten cross jobs (<a 
href="https://redirect.github.com/rust-random/getrandom/issues/585";>#585</a>)</li>
   <li><a 
href="https://github.com/rust-random/getrandom/commit/7cde98b9770eaefe1bcf6194f7ac55ce28d9b53e";><code>7cde98b</code></a>
 Add <code>wasm_js</code> feature flag (<a 
href="https://redirect.github.com/rust-random/getrandom/issues/574";>#574</a>)</li>
   <li><a 
href="https://github.com/rust-random/getrandom/commit/6be40128a7c19bac658c6e85e808a6b5eadfd6b2";><code>6be4012</code></a>
 Web: use safe method to copy to <code>MaybeUninit</code> (<a 
href="https://redirect.github.com/rust-random/getrandom/issues/584";>#584</a>)</li>
   <li><a 
href="https://github.com/rust-random/getrandom/commit/2648e60c5d27979f45043e379b1af7bee5e300a9";><code>2648e60</code></a>
 ESP-IDF: Enable unconditionally (<a 
href="https://redirect.github.com/rust-random/getrandom/issues/583";>#583</a>)</li>
   <li>Additional commits viewable in <a 
href="https://github.com/rust-random/getrandom/compare/v0.2.8...v0.3.1";>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 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>


-- 
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-unsubscr...@datafusion.apache.org

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


---------------------------------------------------------------------
To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org
For additional commands, e-mail: github-h...@datafusion.apache.org

Reply via email to