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
Copy file name to clipboardExpand all lines: CHANGELOG.md
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,14 @@
2
2
3
3
## Unreleased
4
4
5
+
### Breaking changes
6
+
7
+
- feat(tracing): support combined EventFilters and EventMappings (#847) by @lcian
8
+
-`EventFilter` has been changed to a `bitflags` struct.
9
+
- 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`.
10
+
- It's also possible to use `EventMapping::Combined` to map a `tracing` event to multiple items in Sentry.
11
+
-`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.
12
+
5
13
### Fixes
6
14
7
15
- fix(logs): stringify u64 attributes greater than `i64::MAX` (#846) by @lcian
0 commit comments