[PR #1547] [CLOSED] Bump bytes from 1.0.1 to 1.1.0 #2409

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

📋 Pull Request Information

Original PR: https://github.com/hickory-dns/hickory-dns/pull/1547
Author: @dependabot[bot]
Created: 8/30/2021
Status: Closed

Base: mainHead: dependabot/cargo/bytes-1.1.0


📝 Commits (1)

  • ba4a38b Bump bytes from 1.0.1 to 1.1.0

📊 Changes

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

View changed files

📝 Cargo.lock (+2 -2)

📄 Description

Bumps bytes from 1.0.1 to 1.1.0.

Release notes

Sourced from bytes's releases.

Bytes v1.1.0

1.1.0 (August 25, 2021)

Added

  • BufMut::put_bytes(self, val, cnt) (#487)
  • Implement From<Box<[u8]>> for Bytes (#504)

Changed

  • Override put_slice for &mut [u8] (#483)
  • Panic on integer overflow in Chain::remaining (#482)
  • Add inline tags to UninitSlice methods (#443)
  • Override copy_to_bytes for Chain and Take (#481)
  • Keep capacity when unsplit on empty other buf (#502)

Documented

  • Clarify BufMut allocation guarantees (#501)
  • Clarify BufMut::put_int behavior (#486)
  • Clarify actions of clear and truncate. (#508)

#443: tokio-rs/bytes#443 #481: tokio-rs/bytes#481 #482: tokio-rs/bytes#482 #483: tokio-rs/bytes#483 #486: tokio-rs/bytes#486 #487: tokio-rs/bytes#487 #501: tokio-rs/bytes#501 #502: tokio-rs/bytes#502 #504: tokio-rs/bytes#504 #508: tokio-rs/bytes#508

Changelog

Sourced from bytes's changelog.

1.1.0 (August 25, 2021)

Added

  • BufMut::put_bytes(self, val, cnt) (#487)
  • Implement From<Box<[u8]>> for Bytes (#504)

Changed

  • Override put_slice for &mut [u8] (#483)
  • Panic on integer overflow in Chain::remaining (#482)
  • Add inline tags to UninitSlice methods (#443)
  • Override copy_to_bytes for Chain and Take (#481)
  • Keep capacity when unsplit on empty other buf (#502)

Documented

  • Clarify BufMut allocation guarantees (#501)
  • Clarify BufMut::put_int behavior (#486)
  • Clarify actions of clear and truncate. (#508)
Commits

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/1547 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 8/30/2021 **Status:** ❌ Closed **Base:** `main` ← **Head:** `dependabot/cargo/bytes-1.1.0` --- ### 📝 Commits (1) - [`ba4a38b`](https://github.com/hickory-dns/hickory-dns/commit/ba4a38b08fb32c1a186f49719bdd8181b50a3c96) Bump bytes from 1.0.1 to 1.1.0 ### 📊 Changes **1 file changed** (+2 additions, -2 deletions) <details> <summary>View changed files</summary> 📝 `Cargo.lock` (+2 -2) </details> ### 📄 Description Bumps [bytes](https://github.com/tokio-rs/bytes) from 1.0.1 to 1.1.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/tokio-rs/bytes/releases">bytes's releases</a>.</em></p> <blockquote> <h2>Bytes v1.1.0</h2> <h1>1.1.0 (August 25, 2021)</h1> <h3>Added</h3> <ul> <li><code>BufMut::put_bytes(self, val, cnt)</code> (<a href="https://github-redirect.dependabot.com/tokio-rs/bytes/issues/487">#487</a>)</li> <li>Implement <code>From&lt;Box&lt;[u8]&gt;&gt;</code> for <code>Bytes</code> (<a href="https://github-redirect.dependabot.com/tokio-rs/bytes/issues/504">#504</a>)</li> </ul> <h3>Changed</h3> <ul> <li>Override <code>put_slice</code> for <code>&amp;mut [u8]</code> (<a href="https://github-redirect.dependabot.com/tokio-rs/bytes/issues/483">#483</a>)</li> <li>Panic on integer overflow in <code>Chain::remaining</code> (<a href="https://github-redirect.dependabot.com/tokio-rs/bytes/issues/482">#482</a>)</li> <li>Add inline tags to <code>UninitSlice</code> methods (<a href="https://github-redirect.dependabot.com/tokio-rs/bytes/issues/443">#443</a>)</li> <li>Override <code>copy_to_bytes</code> for Chain and Take (<a href="https://github-redirect.dependabot.com/tokio-rs/bytes/issues/481">#481</a>)</li> <li>Keep capacity when unsplit on empty other buf (<a href="https://github-redirect.dependabot.com/tokio-rs/bytes/issues/502">#502</a>)</li> </ul> <h3>Documented</h3> <ul> <li>Clarify <code>BufMut</code> allocation guarantees (<a href="https://github-redirect.dependabot.com/tokio-rs/bytes/issues/501">#501</a>)</li> <li>Clarify <code>BufMut::put_int</code> behavior (<a href="https://github-redirect.dependabot.com/tokio-rs/bytes/issues/486">#486</a>)</li> <li>Clarify actions of <code>clear</code> and <code>truncate</code>. (<a href="https://github-redirect.dependabot.com/tokio-rs/bytes/issues/508">#508</a>)</li> </ul> <p><a href="https://github-redirect.dependabot.com/tokio-rs/bytes/issues/443">#443</a>: <a href="https://github-redirect.dependabot.com/tokio-rs/bytes/issues/443">tokio-rs/bytes#443</a> <a href="https://github-redirect.dependabot.com/tokio-rs/bytes/issues/481">#481</a>: <a href="https://github-redirect.dependabot.com/tokio-rs/bytes/issues/481">tokio-rs/bytes#481</a> <a href="https://github-redirect.dependabot.com/tokio-rs/bytes/issues/482">#482</a>: <a href="https://github-redirect.dependabot.com/tokio-rs/bytes/issues/482">tokio-rs/bytes#482</a> <a href="https://github-redirect.dependabot.com/tokio-rs/bytes/issues/483">#483</a>: <a href="https://github-redirect.dependabot.com/tokio-rs/bytes/issues/483">tokio-rs/bytes#483</a> <a href="https://github-redirect.dependabot.com/tokio-rs/bytes/issues/486">#486</a>: <a href="https://github-redirect.dependabot.com/tokio-rs/bytes/issues/486">tokio-rs/bytes#486</a> <a href="https://github-redirect.dependabot.com/tokio-rs/bytes/issues/487">#487</a>: <a href="https://github-redirect.dependabot.com/tokio-rs/bytes/issues/487">tokio-rs/bytes#487</a> <a href="https://github-redirect.dependabot.com/tokio-rs/bytes/issues/501">#501</a>: <a href="https://github-redirect.dependabot.com/tokio-rs/bytes/issues/501">tokio-rs/bytes#501</a> <a href="https://github-redirect.dependabot.com/tokio-rs/bytes/issues/502">#502</a>: <a href="https://github-redirect.dependabot.com/tokio-rs/bytes/issues/502">tokio-rs/bytes#502</a> <a href="https://github-redirect.dependabot.com/tokio-rs/bytes/issues/504">#504</a>: <a href="https://github-redirect.dependabot.com/tokio-rs/bytes/issues/504">tokio-rs/bytes#504</a> <a href="https://github-redirect.dependabot.com/tokio-rs/bytes/issues/508">#508</a>: <a href="https://github-redirect.dependabot.com/tokio-rs/bytes/issues/508">tokio-rs/bytes#508</a></p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/tokio-rs/bytes/blob/master/CHANGELOG.md">bytes's changelog</a>.</em></p> <blockquote> <h1>1.1.0 (August 25, 2021)</h1> <h3>Added</h3> <ul> <li><code>BufMut::put_bytes(self, val, cnt)</code> (<a href="https://github-redirect.dependabot.com/tokio-rs/bytes/issues/487">#487</a>)</li> <li>Implement <code>From&lt;Box&lt;[u8]&gt;&gt;</code> for <code>Bytes</code> (<a href="https://github-redirect.dependabot.com/tokio-rs/bytes/issues/504">#504</a>)</li> </ul> <h3>Changed</h3> <ul> <li>Override <code>put_slice</code> for <code>&amp;mut [u8]</code> (<a href="https://github-redirect.dependabot.com/tokio-rs/bytes/issues/483">#483</a>)</li> <li>Panic on integer overflow in <code>Chain::remaining</code> (<a href="https://github-redirect.dependabot.com/tokio-rs/bytes/issues/482">#482</a>)</li> <li>Add inline tags to <code>UninitSlice</code> methods (<a href="https://github-redirect.dependabot.com/tokio-rs/bytes/issues/443">#443</a>)</li> <li>Override <code>copy_to_bytes</code> for Chain and Take (<a href="https://github-redirect.dependabot.com/tokio-rs/bytes/issues/481">#481</a>)</li> <li>Keep capacity when unsplit on empty other buf (<a href="https://github-redirect.dependabot.com/tokio-rs/bytes/issues/502">#502</a>)</li> </ul> <h3>Documented</h3> <ul> <li>Clarify <code>BufMut</code> allocation guarantees (<a href="https://github-redirect.dependabot.com/tokio-rs/bytes/issues/501">#501</a>)</li> <li>Clarify <code>BufMut::put_int</code> behavior (<a href="https://github-redirect.dependabot.com/tokio-rs/bytes/issues/486">#486</a>)</li> <li>Clarify actions of <code>clear</code> and <code>truncate</code>. (<a href="https://github-redirect.dependabot.com/tokio-rs/bytes/issues/508">#508</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/tokio-rs/bytes/commit/ebc61e5af14cd9b436ba880cf19e849b05a04c29"><code>ebc61e5</code></a> chore: prepare bytes v1.1.0 (<a href="https://github-redirect.dependabot.com/tokio-rs/bytes/issues/509">#509</a>)</li> <li><a href="https://github.com/tokio-rs/bytes/commit/55e296850d3de4563ef5b260b076e6c697391604"><code>55e2968</code></a> Clarifying actions of clear and truncate. (<a href="https://github-redirect.dependabot.com/tokio-rs/bytes/issues/508">#508</a>)</li> <li><a href="https://github.com/tokio-rs/bytes/commit/0e9fa0b602eb0fb977e2e900cf43532cd869d6b3"><code>0e9fa0b</code></a> impl From&lt;Box<!-- raw HTML omitted --> for Bytes (<a href="https://github-redirect.dependabot.com/tokio-rs/bytes/issues/504">#504</a>)</li> <li><a href="https://github.com/tokio-rs/bytes/commit/ee24be7fa0561169c39308678c35e1ac0f172d5a"><code>ee24be7</code></a> ci: fetch cargo hack from github release (<a href="https://github-redirect.dependabot.com/tokio-rs/bytes/issues/507">#507</a>)</li> <li><a href="https://github.com/tokio-rs/bytes/commit/2697fa7a9dd871d8d64d1959b7ac46227b7b23b4"><code>2697fa7</code></a> BufMut::put_bytes(self, val, cnt) (<a href="https://github-redirect.dependabot.com/tokio-rs/bytes/issues/487">#487</a>)</li> <li><a href="https://github.com/tokio-rs/bytes/commit/fa9cbf1258cea7812d4009639ed8700b987d8d4e"><code>fa9cbf1</code></a> Clarify BufPut::put_int behavior (<a href="https://github-redirect.dependabot.com/tokio-rs/bytes/issues/486">#486</a>)</li> <li><a href="https://github.com/tokio-rs/bytes/commit/ab8e3c01a8fae128971cea43eca18da03482cb29"><code>ab8e3c0</code></a> Clarify BufMut allocation guarantees (<a href="https://github-redirect.dependabot.com/tokio-rs/bytes/issues/501">#501</a>)</li> <li><a href="https://github.com/tokio-rs/bytes/commit/f34dc5c3f9e6a3a11e315631055194a733ac1d08"><code>f34dc5c</code></a> Remove doc URLs (<a href="https://github-redirect.dependabot.com/tokio-rs/bytes/issues/498">#498</a>)</li> <li><a href="https://github.com/tokio-rs/bytes/commit/baaf12d22a844350998d2f60ab3bc78df12ab29a"><code>baaf12d</code></a> Keep capacity when unsplit on empty other buf (<a href="https://github-redirect.dependabot.com/tokio-rs/bytes/issues/502">#502</a>)</li> <li><a href="https://github.com/tokio-rs/bytes/commit/ed1d24e57079a86c6201b5fd6be6f789265f0e6a"><code>ed1d24e</code></a> Use ubuntu-latest instead of ubuntu-16.04 (<a href="https://github-redirect.dependabot.com/tokio-rs/bytes/issues/497">#497</a>)</li> <li>Additional commits viewable in <a href="https://github.com/tokio-rs/bytes/compare/v1.0.1...v1.1.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=bytes&package-manager=cargo&previous-version=1.0.1&new-version=1.1.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) </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:52:12 +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#2409
No description provided.