You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(tracing): support combined EventFilters and EventMappings (#847) by @lcian
EventFilter has been changed to a bitflags struct.
It's now possible to map a tracing event to multiple items in Sentry by combining multiple event filters in the event_filter, e.g. tracing::Level::ERROR => EventFilter::Event | EventFilter::Log.
It's also possible to use EventMapping::Combined to map a tracing event to multiple items in Sentry.
ctx in the signatures of event_from_event, breadcrumb_from_event and log_from_event has been changed to take impl Into<Option<&'context Context<'context, S>>> to avoid cloning the Context when mapping to multiple items.
Features
feat(core): emit debug log when calling capture_log but logs are disabled (#849) by @lcian
Fixes
fix(logs): stringify u64 attributes greater than i64::MAX (#846) by @lcian
Dependencies
chore(deps): bump anyhow and disable its backtrace feature (#632) by @LunaBorowska