From e44852a79e817a1ebf11a3b293a34749b103479c Mon Sep 17 00:00:00 2001 From: lcian Date: Wed, 25 Jun 2025 16:21:58 +0200 Subject: [PATCH 1/3] chore(deps): bump sentry to 0.41.0 --- Cargo.toml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 63f06604..d56bf523 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,7 +21,14 @@ coarsetime = "0.1.33" once_cell = "1.18.0" rand = "0.8.5" rdkafka = { version = "0.37.0", features = ["cmake-build", "tracing"] } -sentry = { version = "0.32.0" } +sentry = { version = "0.41.0", default-features = false, features = [ + # default features, except `release-health` is disabled + "backtrace", + "contexts", + "debug-images", + "panic", + "transport", +] } serde = { version = "1.0.137", features = ["derive"] } serde_json = "1.0.81" thiserror = "1.0" From d772909ef100b5e66e76c3e480b9a5e1abcc5b7a Mon Sep 17 00:00:00 2001 From: lcian Date: Mon, 30 Jun 2025 12:54:09 +0200 Subject: [PATCH 2/3] update --- Cargo.toml | 9 +-------- rust-arroyo/src/backends/kafka/mod.rs | 2 +- 2 files changed, 2 insertions(+), 9 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index d56bf523..8ebe7559 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,14 +21,7 @@ coarsetime = "0.1.33" once_cell = "1.18.0" rand = "0.8.5" rdkafka = { version = "0.37.0", features = ["cmake-build", "tracing"] } -sentry = { version = "0.41.0", default-features = false, features = [ - # default features, except `release-health` is disabled - "backtrace", - "contexts", - "debug-images", - "panic", - "transport", -] } +sentry-core = { version = "0.41.0", features = ["client"] } serde = { version = "1.0.137", features = ["derive"] } serde_json = "1.0.81" thiserror = "1.0" diff --git a/rust-arroyo/src/backends/kafka/mod.rs b/rust-arroyo/src/backends/kafka/mod.rs index a97b268b..a4ae2e10 100644 --- a/rust-arroyo/src/backends/kafka/mod.rs +++ b/rust-arroyo/src/backends/kafka/mod.rs @@ -18,7 +18,7 @@ use rdkafka::message::{BorrowedMessage, Message}; use rdkafka::topic_partition_list::{Offset, TopicPartitionList}; use rdkafka::types::{RDKafkaErrorCode, RDKafkaRespErr}; use rdkafka::Statistics; -use sentry::Hub; +use sentry_core::Hub; use std::collections::HashMap; use std::collections::HashSet; use std::fmt; From f62e4c605b7861647ae91d315ca69daf871cd7cd Mon Sep 17 00:00:00 2001 From: lcian Date: Thu, 3 Jul 2025 14:41:20 +0200 Subject: [PATCH 3/3] sentry >= 0.32 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 8ebe7559..829eda57 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,7 +21,7 @@ coarsetime = "0.1.33" once_cell = "1.18.0" rand = "0.8.5" rdkafka = { version = "0.37.0", features = ["cmake-build", "tracing"] } -sentry-core = { version = "0.41.0", features = ["client"] } +sentry-core = { version = ">=0.32", features = ["client"] } serde = { version = "1.0.137", features = ["derive"] } serde_json = "1.0.81" thiserror = "1.0"