Skip to content

Commit 9b8c546

Browse files
Update CHANGELOG.md
1 parent c47fcd2 commit 9b8c546

File tree

1 file changed

+23
-21
lines changed

1 file changed

+23
-21
lines changed

CHANGELOG.md

Lines changed: 23 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,29 @@
66
> make sure you follow our [migration guide](https://docs.sentry.io/platforms/react-native/migration/) first.
77
<!-- prettier-ignore-end -->
88
9+
## Unreleased
10+
11+
### Features
12+
13+
- Add Replay Custom Masking for iOS ([#4224](https://github.com/getsentry/sentry-react-native/pull/4224))
14+
15+
```jsx
16+
import * as Sentry from '@sentry/react-native';
17+
18+
const Example = () => {
19+
return (
20+
<View>
21+
<Sentry.Mask>
22+
<Text>${"All children of Sentry.Mask will be masked."}</Text>
23+
</Sentry.Mask>
24+
<Sentry.Unmask>
25+
<Text>${"Only direct children of Sentry.Unmask will be unmasked."}</Text>
26+
</Sentry.Unmask>
27+
</View>
28+
);
29+
};
30+
```
31+
932
## 6.3.0
1033

1134
### Features
@@ -37,27 +60,6 @@
3760
});
3861
```
3962

40-
### Features
41-
42-
- Add Replay Custom Masking for iOS ([#4224](https://github.com/getsentry/sentry-react-native/pull/4224))
43-
44-
```jsx
45-
import * as Sentry from '@sentry/react-native';
46-
47-
const Example = () => {
48-
return (
49-
<View>
50-
<Sentry.Mask>
51-
<Text>${"All children of Sentry.Mask will be masked."}</Text>
52-
</Sentry.Mask>
53-
<Sentry.Unmask>
54-
<Text>${"Only direct children of Sentry.Unmask will be unmasked."}</Text>
55-
</Sentry.Unmask>
56-
</View>
57-
);
58-
};
59-
```
60-
6163
### Fixes
6264

6365
- Prevents exception capture context from being overwritten by native scope sync ([#4124](https://github.com/getsentry/sentry-react-native/pull/4124))

0 commit comments

Comments
 (0)