[PR #831] [CLOSED] Bump rand from 0.8.3 to 0.8.4 #1048

Closed
opened 2026-02-28 14:54:17 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/Rigellute/spotify-tui/pull/831
Author: @dependabot-preview[bot]
Created: 6/16/2021
Status: Closed

Base: masterHead: dependabot/cargo/rand-0.8.4


📝 Commits (1)

  • 7609b87 Bump rand from 0.8.3 to 0.8.4

📊 Changes

2 files changed (+4 additions, -4 deletions)

View changed files

📝 Cargo.lock (+3 -3)
📝 Cargo.toml (+1 -1)

📄 Description

Bumps rand from 0.8.3 to 0.8.4.

Changelog

Sourced from rand's changelog.

[0.8.4] - 2021-06-15

Additions

  • Use const-generics to support arrays of all sizes (#1104)
  • Implement Clone and Copy for Alphanumeric (#1126)
  • Add Distribution::map to derive a distribution using a closure (#1129)
  • Add Slice distribution (#1107)
  • Add DistString trait with impls for Standard and Alphanumeric (#1133)

Other

  • Reorder asserts in Uniform float distributions for easier debugging of non-finite arguments (#1094, #1108)
  • Add range overflow check in Uniform float distributions (#1108)
  • Deprecate rngs::adapter::ReadRng (#1130)
Commits
  • 8792268 Merge pull request #1137 from rust-random/work2
  • 1bfc53d Update changelogs and bump version numbers
  • 4534311 Merge pull request #1133 from rust-random/work2
  • 81f1af8 Correct usage of reserve
  • fa17d1c Add comment to append_string for Standard
  • b4c1d66 Add DistString
  • 1947c89 Move Distribution trait and associates to sub-module
  • 98a0339 Merge pull request #1135 from dhardy/work
  • a7f8fb7 Prepare rand_chacha v0.3.1 release
  • 09d3df3 Merge pull request #1130 from dhardy/work
  • Additional commits viewable in compare view

Dependabot compatibility score

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 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)
  • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
  • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
  • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
  • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language
  • @dependabot badge me will comment on this PR with code to add a "Dependabot enabled" badge to your readme

Additionally, you can set the following in your Dependabot dashboard:

  • Update frequency (including time of day and day of week)
  • Pull request limits (per update run and/or open at any time)
  • Out-of-range updates (receive only lockfile updates, if desired)
  • Security updates (receive only security updates, if desired)

🔄 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/Rigellute/spotify-tui/pull/831 **Author:** [@dependabot-preview[bot]](https://github.com/apps/dependabot-preview) **Created:** 6/16/2021 **Status:** ❌ Closed **Base:** `master` ← **Head:** `dependabot/cargo/rand-0.8.4` --- ### 📝 Commits (1) - [`7609b87`](https://github.com/Rigellute/spotify-tui/commit/7609b878d4205f3112a11a04c2dccfb6c36cad9a) Bump rand from 0.8.3 to 0.8.4 ### 📊 Changes **2 files changed** (+4 additions, -4 deletions) <details> <summary>View changed files</summary> 📝 `Cargo.lock` (+3 -3) 📝 `Cargo.toml` (+1 -1) </details> ### 📄 Description Bumps [rand](https://github.com/rust-random/rand) from 0.8.3 to 0.8.4. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/rust-random/rand/blob/master/CHANGELOG.md">rand's changelog</a>.</em></p> <blockquote> <h2>[0.8.4] - 2021-06-15</h2> <h3>Additions</h3> <ul> <li>Use const-generics to support arrays of all sizes (<a href="https://github-redirect.dependabot.com/rust-random/rand/issues/1104">#1104</a>)</li> <li>Implement <code>Clone</code> and <code>Copy</code> for <code>Alphanumeric</code> (<a href="https://github-redirect.dependabot.com/rust-random/rand/issues/1126">#1126</a>)</li> <li>Add <code>Distribution::map</code> to derive a distribution using a closure (<a href="https://github-redirect.dependabot.com/rust-random/rand/issues/1129">#1129</a>)</li> <li>Add <code>Slice</code> distribution (<a href="https://github-redirect.dependabot.com/rust-random/rand/issues/1107">#1107</a>)</li> <li>Add <code>DistString</code> trait with impls for <code>Standard</code> and <code>Alphanumeric</code> (<a href="https://github-redirect.dependabot.com/rust-random/rand/issues/1133">#1133</a>)</li> </ul> <h3>Other</h3> <ul> <li>Reorder asserts in <code>Uniform</code> float distributions for easier debugging of non-finite arguments (<a href="https://github-redirect.dependabot.com/rust-random/rand/issues/1094">#1094</a>, <a href="https://github-redirect.dependabot.com/rust-random/rand/issues/1108">#1108</a>)</li> <li>Add range overflow check in <code>Uniform</code> float distributions (<a href="https://github-redirect.dependabot.com/rust-random/rand/issues/1108">#1108</a>)</li> <li>Deprecate <code>rngs::adapter::ReadRng</code> (<a href="https://github-redirect.dependabot.com/rust-random/rand/issues/1130">#1130</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/rust-random/rand/commit/8792268dfe57e49bb4518190bf4fe66176759a44"><code>8792268</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/rust-random/rand/issues/1137">#1137</a> from rust-random/work2</li> <li><a href="https://github.com/rust-random/rand/commit/1bfc53d57f07af81e193c9ac4156620c3fd50475"><code>1bfc53d</code></a> Update changelogs and bump version numbers</li> <li><a href="https://github.com/rust-random/rand/commit/453431146dfe3cd3d93005c5cd65dffd72f7e7ae"><code>4534311</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/rust-random/rand/issues/1133">#1133</a> from rust-random/work2</li> <li><a href="https://github.com/rust-random/rand/commit/81f1af8f4f8dcd1241083402ba9c85a079826a2f"><code>81f1af8</code></a> Correct usage of reserve</li> <li><a href="https://github.com/rust-random/rand/commit/fa17d1c1a292e6bb95743885c839a8a902e89e81"><code>fa17d1c</code></a> Add comment to append_string for Standard</li> <li><a href="https://github.com/rust-random/rand/commit/b4c1d664097a7221eea0ed4b9e375bf846b83608"><code>b4c1d66</code></a> Add DistString</li> <li><a href="https://github.com/rust-random/rand/commit/1947c899f797d9e082be128ef6b75c57e0384f39"><code>1947c89</code></a> Move Distribution trait and associates to sub-module</li> <li><a href="https://github.com/rust-random/rand/commit/98a0339f99ecfe0467b2829c329bd8b7525a1c21"><code>98a0339</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/rust-random/rand/issues/1135">#1135</a> from dhardy/work</li> <li><a href="https://github.com/rust-random/rand/commit/a7f8fb72d7f36a07499a12d4d6fe811f47fcca78"><code>a7f8fb7</code></a> Prepare rand_chacha v0.3.1 release</li> <li><a href="https://github.com/rust-random/rand/commit/09d3df311938f0198827c8683d53d8af0a2eaf53"><code>09d3df3</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/rust-random/rand/issues/1130">#1130</a> from dhardy/work</li> <li>Additional commits viewable in <a href="https://github.com/rust-random/rand/compare/0.8.3...0.8.4">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=rand&package-manager=cargo&previous-version=0.8.3&new-version=0.8.4)](https://dependabot.com/compatibility-score/?dependency-name=rand&package-manager=cargo&previous-version=0.8.3&new-version=0.8.4) 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) - `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language - `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com): - Update frequency (including time of day and day of week) - Pull request limits (per update run and/or open at any time) - Out-of-range updates (receive only lockfile updates, if desired) - Security updates (receive only security updates, if desired) </details> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-28 14:54:17 +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/spotify-tui#1048
No description provided.