[PR #1512] [CLOSED] Bump rand from 0.8.3 to 0.8.4 #2385

Closed
opened 2026-03-16 08:50:51 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/hickory-dns/hickory-dns/pull/1512
Author: @dependabot[bot]
Created: 6/21/2021
Status: Closed

Base: mainHead: dependabot/cargo/rand-0.8.4


📝 Commits (1)

  • 5797451 Bump rand from 0.8.3 to 0.8.4

📊 Changes

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

View changed files

📝 Cargo.lock (+2 -2)

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

🔄 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/hickory-dns/hickory-dns/pull/1512 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 6/21/2021 **Status:** ❌ Closed **Base:** `main` ← **Head:** `dependabot/cargo/rand-0.8.4` --- ### 📝 Commits (1) - [`5797451`](https://github.com/hickory-dns/hickory-dns/commit/57974511e3f635bce6050b83dce76b0be6439883) Bump rand from 0.8.3 to 0.8.4 ### 📊 Changes **1 file changed** (+2 additions, -2 deletions) <details> <summary>View changed files</summary> 📝 `Cargo.lock` (+2 -2) </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://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=rand&package-manager=cargo&previous-version=0.8.3&new-version=0.8.4)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-16 08:50:51 +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/hickory-dns#2385
No description provided.