From a6424f61789ac4186eb495b37dba99d4a0af047a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Jan 2025 01:36:56 +0000 Subject: [PATCH] chore: Bump sentry from 0.32.3 to 0.36.0 Bumps [sentry](https://github.com/getsentry/sentry-rust) from 0.32.3 to 0.36.0. - [Release notes](https://github.com/getsentry/sentry-rust/releases) - [Changelog](https://github.com/getsentry/sentry-rust/blob/master/CHANGELOG.md) - [Commits](https://github.com/getsentry/sentry-rust/compare/0.32.3...0.36.0) --- updated-dependencies: - dependency-name: sentry dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 46 +++++++++++++++++++++++++++++++++++++--------- backend/Cargo.toml | 2 +- core/Cargo.toml | 2 +- 3 files changed, 39 insertions(+), 11 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index cb3933c4a..d6e6d5ad6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3341,7 +3341,6 @@ version = "0.21.12" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3f56a14d1f48b391359b22f731fd4bd7e43c97f3c50eee276f3aa09c94784d3e" dependencies = [ - "log", "ring", "rustls-webpki 0.101.7", "sct", @@ -3545,17 +3544,17 @@ dependencies = [ [[package]] name = "sentry" -version = "0.32.3" +version = "0.36.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "00421ed8fa0c995f07cde48ba6c89e80f2b312f74ff637326f392fbfd23abe02" +checksum = "3a7332159e544e34db06b251b1eda5e546bd90285c3f58d9c8ff8450b484e0da" dependencies = [ "httpdate", "reqwest", - "rustls 0.21.12", - "sentry-core", + "rustls 0.23.20", + "sentry-core 0.36.0", "tokio", "ureq", - "webpki-roots 0.25.4", + "webpki-roots 0.26.7", ] [[package]] @@ -3566,7 +3565,7 @@ checksum = "ddcbce6e6785c2d91e67c55196f60ac561fab5946b6c7d60cc29f498fc126076" dependencies = [ "anyhow", "sentry-backtrace", - "sentry-core", + "sentry-core 0.32.3", ] [[package]] @@ -3578,7 +3577,7 @@ dependencies = [ "backtrace", "once_cell", "regex", - "sentry-core", + "sentry-core 0.32.3", ] [[package]] @@ -3586,10 +3585,22 @@ name = "sentry-core" version = "0.32.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "46a75011ea1c0d5c46e9e57df03ce81f5c7f0a9e199086334a1f9c0a541e0826" +dependencies = [ + "once_cell", + "sentry-types 0.32.3", + "serde", + "serde_json", +] + +[[package]] +name = "sentry-core" +version = "0.36.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "653942e6141f16651273159f4b8b1eaeedf37a7554c00cd798953e64b8a9bf72" dependencies = [ "once_cell", "rand", - "sentry-types", + "sentry-types 0.36.0", "serde", "serde_json", ] @@ -3611,6 +3622,23 @@ dependencies = [ "uuid", ] +[[package]] +name = "sentry-types" +version = "0.36.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2d4203359e60724aa05cf2385aaf5d4f147e837185d7dd2b9ccf1ee77f4420c8" +dependencies = [ + "debugid", + "hex", + "rand", + "serde", + "serde_json", + "thiserror 1.0.69", + "time", + "url", + "uuid", +] + [[package]] name = "serde" version = "1.0.216" diff --git a/backend/Cargo.toml b/backend/Cargo.toml index 2e58fb01a..7c97ff287 100644 --- a/backend/Cargo.toml +++ b/backend/Cargo.toml @@ -22,7 +22,7 @@ reqwest = { version = "0.12.5", default-features = false, features = [ "json", "rustls-tls", ] } -sentry = { version = "0.32", default-features = false, features = [ +sentry = { version = "0.36", default-features = false, features = [ "reqwest", "rustls", ] } diff --git a/core/Cargo.toml b/core/Cargo.toml index 977a4a446..6df79c4eb 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -38,7 +38,7 @@ reqwest = { version = "0.12.5", default-features = false, features = [ "rustls-tls", ] } rustls = { version = "0.23", features = ["ring"] } -sentry = { version = "0.32", default-features = false, features = [ +sentry = { version = "0.36", default-features = false, features = [ "reqwest", "rustls", ], optional = true }