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
+16Lines changed: 16 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,19 @@
10
10
11
11
### Features
12
12
13
+
- Add experimental `sentry-span-attributes` prop to attach custom attributes to user interaction spans ([#5569](https://github.com/getsentry/sentry-react-native/pull/5569))
14
+
```tsx
15
+
<Pressable
16
+
sentry-label="checkout"
17
+
sentry-span-attributes={{
18
+
'user.type': 'premium',
19
+
'cart.value': 150
20
+
}}
21
+
onPress={handleCheckout}>
22
+
<Text>Checkout</Text>
23
+
</Pressable>
24
+
```
25
+
13
26
- Capture App Start errors and crashes by initializing Sentry from `sentry.options.json` ([#4472](https://github.com/getsentry/sentry-react-native/pull/4472))
14
27
15
28
Create `sentry.options.json` in the React Native project root and set options the same as you currently have in `Sentry.init` in JS.
@@ -85,6 +98,9 @@
85
98
- Bump CLI from v2.58.4 to v3.1.0 ([#5523](https://github.com/getsentry/sentry-react-native/pull/5523), [#5471](https://github.com/getsentry/sentry-react-native/pull/5471), [#5514](https://github.com/getsentry/sentry-react-native/pull/5514), [#5502](https://github.com/getsentry/sentry-react-native/pull/5502))
0 commit comments