From 242ad55fc0e18f49b02420a353ed16598e2b805d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 14 Aug 2024 16:50:06 +0000 Subject: [PATCH] build(deps): Bump bytes from 1.6.0 to 1.7.1 in /rust (#6262) Bumps [bytes](https://github.com/tokio-rs/bytes) from 1.6.0 to 1.7.1.
Release notes

Sourced from bytes's releases.

Bytes 1.7.1

1.7.1 (August 1, 2024)

This release reverts the following change due to a regression:

The revert can be found at #726.

Bytes 1.7.0

1.7.0 (July 31, 2024)

Added

Documented

Changed

Internal changes

Bytes 1.6.1

This release fixes a bug where Bytes::is_unique returns incorrect values when the Bytes originates from a shared BytesMut. (#718)

Changelog

Sourced from bytes's changelog.

1.7.1 (August 1, 2024)

This release reverts the following change due to a regression:

The revert can be found at #726.

1.7.0 (July 31, 2024)

Added

Documented

Changed

Internal changes

1.6.1 (July 13, 2024)

This release fixes a bug where Bytes::is_unique returns incorrect values when the Bytes originates from a shared BytesMut. (#718)

Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=bytes&package-manager=cargo&previous-version=1.6.0&new-version=1.7.1)](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) ---
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 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)
Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Reactor Scram --- rust/Cargo.lock | 4 ++-- rust/connlib/snownet/Cargo.toml | 2 +- rust/connlib/tunnel/Cargo.toml | 2 +- rust/relay/Cargo.toml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/rust/Cargo.lock b/rust/Cargo.lock index 4d1341cff..adc8c93a9 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -683,9 +683,9 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" [[package]] name = "bytes" -version = "1.6.0" +version = "1.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "514de17de45fdb8dc022b1a7975556c53c86f9f0aa5f534b98977b171857c2c9" +checksum = "8318a53db07bb3f8dca91a600466bdb3f2eaadeedfdbcf02e1accbad9271ba50" [[package]] name = "c2rust-bitfields" diff --git a/rust/connlib/snownet/Cargo.toml b/rust/connlib/snownet/Cargo.toml index 6dcfe8db8..01db821a7 100644 --- a/rust/connlib/snownet/Cargo.toml +++ b/rust/connlib/snownet/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" backoff = "0.4.0" boringtun = { workspace = true } bytecodec = "0.4.15" -bytes = "1.4.0" +bytes = "1.7.1" hex = "0.4.0" hex-display = "0.3.0" ip-packet = { workspace = true } diff --git a/rust/connlib/tunnel/Cargo.toml b/rust/connlib/tunnel/Cargo.toml index 9c19cbdc2..f2a48b467 100644 --- a/rust/connlib/tunnel/Cargo.toml +++ b/rust/connlib/tunnel/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" anyhow = "1.0" bimap = "0.6" boringtun = { workspace = true } -bytes = { version = "1.4", default-features = false, features = ["std"] } +bytes = { version = "1.7", default-features = false, features = ["std"] } chrono = { workspace = true } connlib-shared = { workspace = true } domain = { workspace = true } diff --git a/rust/relay/Cargo.toml b/rust/relay/Cargo.toml index 479b19ab7..c59ccc12b 100644 --- a/rust/relay/Cargo.toml +++ b/rust/relay/Cargo.toml @@ -8,7 +8,7 @@ anyhow = "1.0.82" backoff = "0.4" base64 = "0.22.1" bytecodec = "0.4.15" -bytes = "1.4.0" +bytes = "1.7.1" clap = { version = "4.5.4", features = ["derive", "env"] } derive_more = { version = "0.99.18", features = ["from"] } firezone-bin-shared = { workspace = true }