[PR #548] build(deps): update getrandom requirement from 0.3.4 to 0.4.1 #531

Open
opened 2026-02-27 20:25:04 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/ramsayleung/rspotify/pull/548
Author: @dependabot[bot]
Created: 2/3/2026
Status: 🔄 Open

Base: masterHead: dependabot/cargo/getrandom-0.4.1


📝 Commits (1)

  • 39b1f8d build(deps): update getrandom requirement from 0.3.4 to 0.4.1

📊 Changes

1 file changed (+1 additions, -1 deletions)

View changed files

📝 Cargo.toml (+1 -1)

📄 Description

Updates the requirements on getrandom to permit the latest version.

Changelog

Sourced from getrandom's changelog.

[0.4.1] - 2026-02-03

Fixed

  • Documentation build on docs.rs #801

#801: rust-random/getrandom#801

[0.4.0] - 2026-02-02

Added

  • RawOsError type alias #739
  • SysRng behind new feature sys_rng #751
  • WASIp3 support #779
  • extern_impl opt-in backend #786 #794
  • Motor OS support #797

Changed

  • Use Edition 2024 and MSRV 1.85 #749

#739: rust-random/getrandom#739 #749: rust-random/getrandom#749 #751: rust-random/getrandom#751 #779: rust-random/getrandom#779 #786: rust-random/getrandom#786 #794: rust-random/getrandom#794

[0.3.4] - 2025-10-14

Major change to wasm_js backend

Now, when the wasm_js feature is enabled, the wasm_js backend will be used by default. Users of wasm32-unknown-unknown targeting JavaScript environments like the Web and Node.js will no longer need to specify:

--cfg getrandom_backend="wasm_js"

in RUSTFLAGS for the crate to compile. They can now simple enable a feature.

Note: this should not affect non-JS users of the wasm32-unknown-unknown target. Using --cfg getrandom_backend will still override the source of randomness even if the wasm_js feature is enabled. This includes --cfg getrandom_backend=custom and --cfg getrandom_backend=unsupported.

For more information, see the discussions in #671, #675, and #730.

Added

  • unsupported opt-in backend #667
  • windows_legacy opt-in backend #724

Changed

... (truncated)

Commits

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

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/ramsayleung/rspotify/pull/548 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 2/3/2026 **Status:** 🔄 Open **Base:** `master` ← **Head:** `dependabot/cargo/getrandom-0.4.1` --- ### 📝 Commits (1) - [`39b1f8d`](https://github.com/ramsayleung/rspotify/commit/39b1f8d7edea80ab78d052ae98e080050efe7d95) build(deps): update getrandom requirement from 0.3.4 to 0.4.1 ### 📊 Changes **1 file changed** (+1 additions, -1 deletions) <details> <summary>View changed files</summary> 📝 `Cargo.toml` (+1 -1) </details> ### 📄 Description 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.4.1] - 2026-02-03</h2> <h3>Fixed</h3> <ul> <li>Documentation build on docs.rs <a href="https://redirect.github.com/rust-random/getrandom/issues/801">#801</a></li> </ul> <p><a href="https://redirect.github.com/rust-random/getrandom/issues/801">#801</a>: <a href="https://redirect.github.com/rust-random/getrandom/pull/801">rust-random/getrandom#801</a></p> <h2>[0.4.0] - 2026-02-02</h2> <h3>Added</h3> <ul> <li><code>RawOsError</code> type alias <a href="https://redirect.github.com/rust-random/getrandom/issues/739">#739</a></li> <li><code>SysRng</code> behind new feature <code>sys_rng</code> <a href="https://redirect.github.com/rust-random/getrandom/issues/751">#751</a></li> <li>WASIp3 support <a href="https://redirect.github.com/rust-random/getrandom/issues/779">#779</a></li> <li><code>extern_impl</code> opt-in backend <a href="https://redirect.github.com/rust-random/getrandom/issues/786">#786</a> <a href="https://redirect.github.com/rust-random/getrandom/issues/794">#794</a></li> <li>Motor OS support <a href="https://redirect.github.com/rust-random/getrandom/issues/797">#797</a></li> </ul> <h3>Changed</h3> <ul> <li>Use Edition 2024 and MSRV 1.85 <a href="https://redirect.github.com/rust-random/getrandom/issues/749">#749</a></li> </ul> <p><a href="https://redirect.github.com/rust-random/getrandom/issues/739">#739</a>: <a href="https://redirect.github.com/rust-random/getrandom/pull/739">rust-random/getrandom#739</a> <a href="https://redirect.github.com/rust-random/getrandom/issues/749">#749</a>: <a href="https://redirect.github.com/rust-random/getrandom/pull/749">rust-random/getrandom#749</a> <a href="https://redirect.github.com/rust-random/getrandom/issues/751">#751</a>: <a href="https://redirect.github.com/rust-random/getrandom/pull/751">rust-random/getrandom#751</a> <a href="https://redirect.github.com/rust-random/getrandom/issues/779">#779</a>: <a href="https://redirect.github.com/rust-random/getrandom/pull/779">rust-random/getrandom#779</a> <a href="https://redirect.github.com/rust-random/getrandom/issues/786">#786</a>: <a href="https://redirect.github.com/rust-random/getrandom/pull/786">rust-random/getrandom#786</a> <a href="https://redirect.github.com/rust-random/getrandom/issues/794">#794</a>: <a href="https://redirect.github.com/rust-random/getrandom/pull/794">rust-random/getrandom#794</a></p> <h2>[0.3.4] - 2025-10-14</h2> <h3>Major change to <code>wasm_js</code> backend</h3> <p>Now, when the <code>wasm_js</code> feature is enabled, the <code>wasm_js</code> backend will be used by default. Users of <code>wasm32-unknown-unknown</code> targeting JavaScript environments like the Web and Node.js will no longer need to specify:</p> <pre><code>--cfg getrandom_backend=&quot;wasm_js&quot; </code></pre> <p>in <code>RUSTFLAGS</code> for the crate to compile. They can now simple enable a feature.</p> <p>Note: this should not affect non-JS users of the <code>wasm32-unknown-unknown</code> target. Using <code>--cfg getrandom_backend</code> will still override the source of randomness <em>even if</em> the <code>wasm_js</code> feature is enabled. This includes <code>--cfg getrandom_backend=custom</code> and <code>--cfg getrandom_backend=unsupported</code>.</p> <p>For more information, see the discussions in <a href="https://redirect.github.com/rust-random/getrandom/issues/671">#671</a>, <a href="https://redirect.github.com/rust-random/getrandom/issues/675">#675</a>, and <a href="https://redirect.github.com/rust-random/getrandom/issues/730">#730</a>.</p> <h3>Added</h3> <ul> <li><code>unsupported</code> opt-in backend <a href="https://redirect.github.com/rust-random/getrandom/issues/667">#667</a></li> <li><code>windows_legacy</code> opt-in backend <a href="https://redirect.github.com/rust-random/getrandom/issues/724">#724</a></li> </ul> <h3>Changed</h3> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/rust-random/getrandom/commit/314fd5ab3e6d9ef2ec90243894731865a725417d"><code>314fd5a</code></a> Release v0.4.1 (<a href="https://redirect.github.com/rust-random/getrandom/issues/803">#803</a>)</li> <li><a href="https://github.com/rust-random/getrandom/commit/7e3e073e48bfe8f5bb858933a9e3f55ac92feccd"><code>7e3e073</code></a> Fix documentation build on docs.rs (<a href="https://redirect.github.com/rust-random/getrandom/issues/801">#801</a>)</li> <li><a href="https://github.com/rust-random/getrandom/commit/35fd5af2ed77b4a103b5b9a5248f0b8cd56c7aaa"><code>35fd5af</code></a> Prepare v0.4.0 release (<a href="https://redirect.github.com/rust-random/getrandom/issues/798">#798</a>)</li> <li><a href="https://github.com/rust-random/getrandom/commit/269bc59fbc42bf43cab144542fa4ccd62aa58763"><code>269bc59</code></a> ci: fix tests.yml (<a href="https://redirect.github.com/rust-random/getrandom/issues/799">#799</a>)</li> <li><a href="https://github.com/rust-random/getrandom/commit/1fce070f75c5d695372d7f6c5649d74a2f9effaf"><code>1fce070</code></a> Rename <code>extern_item_impls</code> opt-in backend to <code>extern_impl</code> (<a href="https://redirect.github.com/rust-random/getrandom/issues/794">#794</a>)</li> <li><a href="https://github.com/rust-random/getrandom/commit/887775d2535f3b9048326cd2e06a1afc5fe73b78"><code>887775d</code></a> Add rdrand backend for Motor OS (<a href="https://redirect.github.com/rust-random/getrandom/issues/797">#797</a>)</li> <li><a href="https://github.com/rust-random/getrandom/commit/2e35077901555d278c54f156626ae5effa39729c"><code>2e35077</code></a> Update license year (<a href="https://redirect.github.com/rust-random/getrandom/issues/795">#795</a>)</li> <li><a href="https://github.com/rust-random/getrandom/commit/2e15731546515efe9681cce87806bb83ef4f5975"><code>2e15731</code></a> Add <code>extern_item_impls</code> opt-in backend (<a href="https://redirect.github.com/rust-random/getrandom/issues/786">#786</a>)</li> <li><a href="https://github.com/rust-random/getrandom/commit/698db3b4d2218c202478abe989109e2bcbb33dc8"><code>698db3b</code></a> Bump <code>wasip3</code> to v0.4 (<a href="https://redirect.github.com/rust-random/getrandom/issues/790">#790</a>)</li> <li><a href="https://github.com/rust-random/getrandom/commit/ebc99b6f5f18484329760255b3c057d0e04b9577"><code>ebc99b6</code></a> readme: fix outdated Windows 10 entry (<a href="https://redirect.github.com/rust-random/getrandom/issues/792">#792</a>)</li> <li>Additional commits viewable in <a href="https://github.com/rust-random/getrandom/compare/v0.3.4...v0.4.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> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/rspotify#531
No description provided.