[PR #523] [CLOSED] Update getrandom requirement from 0.2.3 to 0.3.2 #513

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

📋 Pull Request Information

Original PR: https://github.com/ramsayleung/rspotify/pull/523
Author: @dependabot[bot]
Created: 3/18/2025
Status: Closed

Base: masterHead: dependabot/cargo/getrandom-0.3.2


📝 Commits (1)

  • 7992909 Update getrandom requirement from 0.2.3 to 0.3.2

📊 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.3.2] - 2025-03-17

Added

  • efi_rng opt-in backend #570
  • linux_raw opt-in backend #572
  • .cargo/config.toml example in the crate-level docs #591
  • getrandom_test_linux_without_fallback configuration flag to test that file fallback is not triggered in the linux_android_with_fallback backend #605
  • Built-in support for *-linux-none targets #618
  • Cygwin support #626

Changed

  • Update wasi dependency to v0.14 #594
  • Add #[inline] attribute to the inner functions #596
  • Update WASI and Emscripten links in the crate-level docs #597
  • Do not use dlsym on MUSL targets in the linux_android_with_fallback backend #602
  • Remove linux_android.rs and use getrandom.rs instead #603
  • Always use RtlGenRandom on Windows targets when compiling with pre-1.78 Rust #610
  • Internal representation of the Error type #614
  • Remove windows-targets dependency and use [raw-dylib] directly #627

Removed

  • Error::INTERNAL_START and Error::CUSTOM_START associated constants #614

#570: rust-random/getrandom#570 #572: rust-random/getrandom#572 #591: rust-random/getrandom#591 #594: rust-random/getrandom#594 #596: rust-random/getrandom#596 #597: rust-random/getrandom#597 #602: rust-random/getrandom#602 #603: rust-random/getrandom#603 #605: rust-random/getrandom#605 #610: rust-random/getrandom#610 #614: rust-random/getrandom#614 #618: rust-random/getrandom#618 #626: rust-random/getrandom#626 #627: rust-random/getrandom#627 [raw-dylib]: https://doc.rust-lang.org/reference/items/external-blocks.html?highlight=link#dylib-versus-raw-dylib

[0.3.1] - 2025-01-28

Fixed

  • Build error on Android #588

#588: rust-random/getrandom#588

[0.3.0] - 2025-01-25

Breaking Changes

... (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/523 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 3/18/2025 **Status:** ❌ Closed **Base:** `master` ← **Head:** `dependabot/cargo/getrandom-0.3.2` --- ### 📝 Commits (1) - [`7992909`](https://github.com/ramsayleung/rspotify/commit/799290965438d79e03b8bd85dd20289d894f75ee) Update getrandom requirement from 0.2.3 to 0.3.2 ### 📊 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.3.2] - 2025-03-17</h2> <h3>Added</h3> <ul> <li><code>efi_rng</code> opt-in backend <a href="https://redirect.github.com/rust-random/getrandom/issues/570">#570</a></li> <li><code>linux_raw</code> opt-in backend <a href="https://redirect.github.com/rust-random/getrandom/issues/572">#572</a></li> <li><code>.cargo/config.toml</code> example in the crate-level docs <a href="https://redirect.github.com/rust-random/getrandom/issues/591">#591</a></li> <li><code>getrandom_test_linux_without_fallback</code> configuration flag to test that file fallback is not triggered in the <code>linux_android_with_fallback</code> backend <a href="https://redirect.github.com/rust-random/getrandom/issues/605">#605</a></li> <li>Built-in support for <code>*-linux-none</code> targets <a href="https://redirect.github.com/rust-random/getrandom/issues/618">#618</a></li> <li>Cygwin support <a href="https://redirect.github.com/rust-random/getrandom/issues/626">#626</a></li> </ul> <h3>Changed</h3> <ul> <li>Update <code>wasi</code> dependency to v0.14 <a href="https://redirect.github.com/rust-random/getrandom/issues/594">#594</a></li> <li>Add <code>#[inline]</code> attribute to the inner functions <a href="https://redirect.github.com/rust-random/getrandom/issues/596">#596</a></li> <li>Update WASI and Emscripten links in the crate-level docs <a href="https://redirect.github.com/rust-random/getrandom/issues/597">#597</a></li> <li>Do not use <code>dlsym</code> on MUSL targets in the <code>linux_android_with_fallback</code> backend <a href="https://redirect.github.com/rust-random/getrandom/issues/602">#602</a></li> <li>Remove <code>linux_android.rs</code> and use <code>getrandom.rs</code> instead <a href="https://redirect.github.com/rust-random/getrandom/issues/603">#603</a></li> <li>Always use <code>RtlGenRandom</code> on Windows targets when compiling with pre-1.78 Rust <a href="https://redirect.github.com/rust-random/getrandom/issues/610">#610</a></li> <li>Internal representation of the <code>Error</code> type <a href="https://redirect.github.com/rust-random/getrandom/issues/614">#614</a></li> <li>Remove <code>windows-targets</code> dependency and use [<code>raw-dylib</code>] directly <a href="https://redirect.github.com/rust-random/getrandom/issues/627">#627</a></li> </ul> <h3>Removed</h3> <ul> <li><code>Error::INTERNAL_START</code> and <code>Error::CUSTOM_START</code> associated constants <a href="https://redirect.github.com/rust-random/getrandom/issues/614">#614</a></li> </ul> <p><a href="https://redirect.github.com/rust-random/getrandom/issues/570">#570</a>: <a href="https://redirect.github.com/rust-random/getrandom/pull/570">rust-random/getrandom#570</a> <a href="https://redirect.github.com/rust-random/getrandom/issues/572">#572</a>: <a href="https://redirect.github.com/rust-random/getrandom/pull/572">rust-random/getrandom#572</a> <a href="https://redirect.github.com/rust-random/getrandom/issues/591">#591</a>: <a href="https://redirect.github.com/rust-random/getrandom/pull/591">rust-random/getrandom#591</a> <a href="https://redirect.github.com/rust-random/getrandom/issues/594">#594</a>: <a href="https://redirect.github.com/rust-random/getrandom/pull/594">rust-random/getrandom#594</a> <a href="https://redirect.github.com/rust-random/getrandom/issues/596">#596</a>: <a href="https://redirect.github.com/rust-random/getrandom/pull/596">rust-random/getrandom#596</a> <a href="https://redirect.github.com/rust-random/getrandom/issues/597">#597</a>: <a href="https://redirect.github.com/rust-random/getrandom/pull/597">rust-random/getrandom#597</a> <a href="https://redirect.github.com/rust-random/getrandom/issues/602">#602</a>: <a href="https://redirect.github.com/rust-random/getrandom/pull/602">rust-random/getrandom#602</a> <a href="https://redirect.github.com/rust-random/getrandom/issues/603">#603</a>: <a href="https://redirect.github.com/rust-random/getrandom/pull/603">rust-random/getrandom#603</a> <a href="https://redirect.github.com/rust-random/getrandom/issues/605">#605</a>: <a href="https://redirect.github.com/rust-random/getrandom/pull/605">rust-random/getrandom#605</a> <a href="https://redirect.github.com/rust-random/getrandom/issues/610">#610</a>: <a href="https://redirect.github.com/rust-random/getrandom/pull/610">rust-random/getrandom#610</a> <a href="https://redirect.github.com/rust-random/getrandom/issues/614">#614</a>: <a href="https://redirect.github.com/rust-random/getrandom/pull/614">rust-random/getrandom#614</a> <a href="https://redirect.github.com/rust-random/getrandom/issues/618">#618</a>: <a href="https://redirect.github.com/rust-random/getrandom/pull/618">rust-random/getrandom#618</a> <a href="https://redirect.github.com/rust-random/getrandom/issues/626">#626</a>: <a href="https://redirect.github.com/rust-random/getrandom/pull/626">rust-random/getrandom#626</a> <a href="https://redirect.github.com/rust-random/getrandom/issues/627">#627</a>: <a href="https://redirect.github.com/rust-random/getrandom/pull/627">rust-random/getrandom#627</a> [<code>raw-dylib</code>]: <a href="https://doc.rust-lang.org/reference/items/external-blocks.html?highlight=link#dylib-versus-raw-dylib">https://doc.rust-lang.org/reference/items/external-blocks.html?highlight=link#dylib-versus-raw-dylib</a></p> <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> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/rust-random/getrandom/commit/3a9172299b5c36791c60d3037355d5dec5fce439"><code>3a91722</code></a> Release v0.3.2 (<a href="https://redirect.github.com/rust-random/getrandom/issues/617">#617</a>)</li> <li><a href="https://github.com/rust-random/getrandom/commit/5b9e58d84340c0576d9014f49e5930f5df755ac3"><code>5b9e58d</code></a> build(deps): bump the all-deps group with 2 updates (<a href="https://redirect.github.com/rust-random/getrandom/issues/629">#629</a>)</li> <li><a href="https://github.com/rust-random/getrandom/commit/a13ad84f89221199c8e046046675f15189f83dea"><code>a13ad84</code></a> Add built-in support for <code>*-linux-none</code> targets (<a href="https://redirect.github.com/rust-random/getrandom/issues/618">#618</a>)</li> <li><a href="https://github.com/rust-random/getrandom/commit/526aff14f4c02aea4fcf9b7fccc02a11eac9e502"><code>526aff1</code></a> Add cygwin support (<a href="https://redirect.github.com/rust-random/getrandom/issues/626">#626</a>)</li> <li><a href="https://github.com/rust-random/getrandom/commit/b160ef612568c4aeaf749d6311bc99e2fe7e12bc"><code>b160ef6</code></a> Use &quot;raw-dylib&quot; for non-win7 Windows Targets (<a href="https://redirect.github.com/rust-random/getrandom/issues/627">#627</a>)</li> <li><a href="https://github.com/rust-random/getrandom/commit/05c0c41f5dbcb6b52fadbfdf10d16cef8ba97465"><code>05c0c41</code></a> Update Cargo.lock (<a href="https://redirect.github.com/rust-random/getrandom/issues/625">#625</a>)</li> <li><a href="https://github.com/rust-random/getrandom/commit/3b1605888f867e17c5106ea7ca91b612cb0096aa"><code>3b16058</code></a> ci: fix Dependabot config (<a href="https://redirect.github.com/rust-random/getrandom/issues/624">#624</a>)</li> <li><a href="https://github.com/rust-random/getrandom/commit/e591030c48a8a06d5c1710ed3244e0ef2a66c0b5"><code>e591030</code></a> ci: tweak Dependabot config (<a href="https://redirect.github.com/rust-random/getrandom/issues/623">#623</a>)</li> <li><a href="https://github.com/rust-random/getrandom/commit/2eb358466c175dee46a67e29ed511f926cdfd560"><code>2eb3584</code></a> ci: fix Dependabot config (<a href="https://redirect.github.com/rust-random/getrandom/issues/620">#620</a>)</li> <li><a href="https://github.com/rust-random/getrandom/commit/d3175f3f182174d54ab5f3b9c483b7fc23abe85e"><code>d3175f3</code></a> ci: replace <code>lock_upd</code> job with Dependabot (<a href="https://redirect.github.com/rust-random/getrandom/issues/619">#619</a>)</li> <li>Additional commits viewable in <a href="https://github.com/rust-random/getrandom/compare/v0.2.3...v0.3.2">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>
kerem 2026-02-27 20:25:00 +03:00
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#513
No description provided.