Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ dependencies = [
"python-rapidjson>=1.8",
"pyyaml>=6.0",
"redis>=4.5.4",
"sentry-arroyo>=2.35.0",
"sentry-arroyo>=2.38.5",
"sentry-conventions>=0.3.0",
"sentry-kafka-schemas>=2.1.24",
"sentry-protos>=0.7.0",
Expand Down
6 changes: 3 additions & 3 deletions rust_snuba/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion rust_snuba/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ sentry = { version = "0.41.0", default-features = false, features = [
sentry-kafka-schemas = "2.1.24"
sentry-options = "1.0.3"
sentry_protos = "0.7.0"
sentry_arroyo = { version = "2.37.0", features = ["ssl"] }
sentry_arroyo = { version = "2.38.5", features = ["ssl"] }
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sentry-core version split breaks Sentry event capture in arroyo

Medium Severity

Bumping sentry_arroyo to 2.38.5 changes its transitive dependency from sentry-core 0.41.0 to sentry-core 0.46.2, while the main sentry crate remains pinned at 0.41.0 (which depends on sentry-core 0.41.0). In Rust, these are two completely separate crate instances with independent global state and thread-local Hub storage. The sentry::init() call only configures the 0.41.0 Hub, so any Sentry event capture within sentry_arroyo (using the 0.46.2 Hub) will silently go nowhere. Previously both crates shared sentry-core 0.41.0, so Sentry context propagated correctly into arroyo processing code.

Additional Locations (1)
Fix in Cursor Fix in Web

sentry_usage_accountant = { version = "0.1.2", features = ["kafka"] }
seq-macro = "0.3"
serde = { version = "1.0", features = ["derive"] }
Expand Down
20 changes: 11 additions & 9 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading