Bump bumpalo from 3.4.0 to 3.12.0 #2

Open
dependabot[bot] wants to merge 1 commits from dependabot/cargo/bumpalo-3.12.0 into master
dependabot[bot] commented 2023-01-20 22:40:26 +00:00 (Migrated from github.com)

Bumps bumpalo from 3.4.0 to 3.12.0.

Changelog

Sourced from bumpalo's changelog.

3.12.0

Released 2023-01-17.

Added

  • Added the bumpalo::boxed::Box::bump and bumpalo::collections::String::bump getters to get the underlying Bump that a string or box was allocated into.

Changed

  • Some uses of Box that MIRI did not previously consider as UB are now reported as UB, and bumpalo's internals have been adjusted to avoid the new UB.

3.11.1

Released 2022-10-18.

Security

  • Fixed a bug where when std::vec::IntoIter was ported to bumpalo::collections::vec::IntoIter, it didn't get its underlying Bump's lifetime threaded through. This meant that rustc was not checking the borrows for bumpalo::collections::IntoIter and this could result in use-after-free bugs.

3.11.0

Released 2022-08-17.

Added

  • Added support for per-Bump allocation limits. These are enforced only in the slow path when allocating new chunks in the Bump, not in the bump allocation hot path, and therefore impose near zero overhead.
  • Added the bumpalo::boxed::Box::into_inner method.

Changed

  • Updated to Rust 2021 edition.
  • The minimum supported Rust version (MSRV) is now 1.56.0.

3.10.0

... (truncated)

Commits
  • 50ba1bd Bump to 3.12.0
  • 3dd3650 Merge pull request #190 from mattfbacon/main
  • 37be9a9 Merge branch 'fitzgen:main' into main
  • 3664dbb Add String::bump method
  • 701514f Merge pull request #189 from mattfbacon/main
  • c6507f7 Add Vec::bump method
  • b1e67b7 Merge pull request #188 from saethlin/field-retagging
  • d325e2c Use ManuallyDrop with bumpalo's Box instead of mem::forget
  • c699cd1 Merge pull request #183 from stepancheg/allocated-bytes-no-headers
  • 5805a29 Clarify allocated_bytes does not include headers
  • 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

You can disable automated security fix PRs for this repo from the Security Alerts page.

Bumps [bumpalo](https://github.com/fitzgen/bumpalo) from 3.4.0 to 3.12.0. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/fitzgen/bumpalo/blob/main/CHANGELOG.md">bumpalo's changelog</a>.</em></p> <blockquote> <h2>3.12.0</h2> <p>Released 2023-01-17.</p> <h3>Added</h3> <ul> <li>Added the <code>bumpalo::boxed::Box::bump</code> and <code>bumpalo::collections::String::bump</code> getters to get the underlying <code>Bump</code> that a string or box was allocated into.</li> </ul> <h3>Changed</h3> <ul> <li>Some uses of <code>Box</code> that MIRI did not previously consider as UB are now reported as UB, and <code>bumpalo</code>'s internals have been adjusted to avoid the new UB.</li> </ul> <hr /> <h2>3.11.1</h2> <p>Released 2022-10-18.</p> <h3>Security</h3> <ul> <li>Fixed a bug where when <code>std::vec::IntoIter</code> was ported to <code>bumpalo::collections::vec::IntoIter</code>, it didn't get its underlying <code>Bump</code>'s lifetime threaded through. This meant that <code>rustc</code> was not checking the borrows for <code>bumpalo::collections::IntoIter</code> and this could result in use-after-free bugs.</li> </ul> <hr /> <h2>3.11.0</h2> <p>Released 2022-08-17.</p> <h3>Added</h3> <ul> <li>Added support for per-<code>Bump</code> allocation limits. These are enforced only in the slow path when allocating new chunks in the <code>Bump</code>, not in the bump allocation hot path, and therefore impose near zero overhead.</li> <li>Added the <code>bumpalo::boxed::Box::into_inner</code> method.</li> </ul> <h3>Changed</h3> <ul> <li>Updated to Rust 2021 edition.</li> <li>The minimum supported Rust version (MSRV) is now 1.56.0.</li> </ul> <hr /> <h2>3.10.0</h2> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/fitzgen/bumpalo/commit/50ba1bdd406665bd2e6ba430e167a38ed1b13964"><code>50ba1bd</code></a> Bump to 3.12.0</li> <li><a href="https://github.com/fitzgen/bumpalo/commit/3dd36507db87e1b86617f1da88a9bc81374e7faf"><code>3dd3650</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/fitzgen/bumpalo/issues/190">#190</a> from mattfbacon/main</li> <li><a href="https://github.com/fitzgen/bumpalo/commit/37be9a98e4241a9cc6e534c47778cb2f4337b83f"><code>37be9a9</code></a> Merge branch 'fitzgen:main' into main</li> <li><a href="https://github.com/fitzgen/bumpalo/commit/3664dbb7922fa1372adf53fb8767cd0fc2115267"><code>3664dbb</code></a> Add String::bump method</li> <li><a href="https://github.com/fitzgen/bumpalo/commit/701514f553a6feab61b99e0382f314d532f57272"><code>701514f</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/fitzgen/bumpalo/issues/189">#189</a> from mattfbacon/main</li> <li><a href="https://github.com/fitzgen/bumpalo/commit/c6507f7a4c33811a275b357004c3904261c8908c"><code>c6507f7</code></a> Add Vec::bump method</li> <li><a href="https://github.com/fitzgen/bumpalo/commit/b1e67b7aa188d4128343858bf86a29f1c99362c6"><code>b1e67b7</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/fitzgen/bumpalo/issues/188">#188</a> from saethlin/field-retagging</li> <li><a href="https://github.com/fitzgen/bumpalo/commit/d325e2c94576f6806508751f945ba5985661b721"><code>d325e2c</code></a> Use ManuallyDrop with bumpalo's Box instead of mem::forget</li> <li><a href="https://github.com/fitzgen/bumpalo/commit/c699cd1303c441953344f354892b550df6c24aa1"><code>c699cd1</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/fitzgen/bumpalo/issues/183">#183</a> from stepancheg/allocated-bytes-no-headers</li> <li><a href="https://github.com/fitzgen/bumpalo/commit/5805a293e8ba99f2adfd9c02ee6ad2532ad52fca"><code>5805a29</code></a> Clarify allocated_bytes does not include headers</li> <li>Additional commits viewable in <a href="https://github.com/fitzgen/bumpalo/compare/3.4.0...3.12.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=bumpalo&package-manager=cargo&previous-version=3.4.0&new-version=3.12.0)](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) - `@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 You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/Sarsoo/yew-tree/network/alerts). </details>
This pull request can be merged automatically.
You are not authorized to merge this pull request.

Checkout

From your project repository, check out a new branch and test the changes.
git fetch -u origin dependabot/cargo/bumpalo-3.12.0:dependabot/cargo/bumpalo-3.12.0
git checkout dependabot/cargo/bumpalo-3.12.0
Sign in to join this conversation.
No description provided.