From 6038ade9a01da4b078683f15ddd36210e7d425cf Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Aug 2025 08:49:29 +0000 Subject: [PATCH] build(deps): bump socket2 from 0.5.10 to 0.6.0 in /rust (#10183) Bumps [socket2](https://github.com/rust-lang/socket2) from 0.5.10 to 0.6.0.
Changelog

Sourced from socket2's changelog.

0.6.0

Breaking changes

All IPv4 methods now have a _v4 suffix, IPv6 uses _v6. TCP methods have a tcp_ prefix (looked better than a suffix).

Furthermore we removed all types from external libraries (i.e. libc or windows-sys) from the public API, allowing us to update those without breaking the API.

Non-breaking changes

... (truncated)

Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=socket2&package-manager=cargo&previous-version=0.5.10&new-version=0.6.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) ---
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> --- rust/Cargo.lock | 6 +++--- rust/Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/rust/Cargo.lock b/rust/Cargo.lock index 8d54b5bd2..b529e669b 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -2585,7 +2585,7 @@ dependencies = [ "sha2", "smallvec", "socket-factory", - "socket2 0.5.10", + "socket2 0.6.0", "stun_codec", "test-strategy", "thiserror 2.0.12", @@ -2670,7 +2670,7 @@ dependencies = [ "sha2", "snownet", "socket-factory", - "socket2 0.5.10", + "socket2 0.6.0", "test-case", "test-strategy", "thiserror 2.0.12", @@ -6949,7 +6949,7 @@ dependencies = [ "libc", "opentelemetry", "quinn-udp", - "socket2 0.5.10", + "socket2 0.6.0", "tokio", "tracing", ] diff --git a/rust/Cargo.toml b/rust/Cargo.toml index 2667cd742..e166f2038 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -156,7 +156,7 @@ smbios-lib = "0.9.2" smoltcp = { version = "0.12", default-features = false } snownet = { path = "connlib/snownet" } socket-factory = { path = "connlib/socket-factory" } -socket2 = { version = "0.5" } +socket2 = { version = "0.6" } specta = "=2.0.0-rc.22" specta-typescript = "0.0.9" static_assertions = "1.1.0"