Skip to content

Commit ddc0552

Browse files
krystofwoldrichgetsentry-botgetsentry-botlucas-zimerman
authored
Publish/6.4.0 (#4344)
* chore(changelog): Copy 6.4.0-beta.1 entry * release: 6.4.0 --------- Co-authored-by: getsentry-bot <[email protected]> Co-authored-by: getsentry-bot <[email protected]> Co-authored-by: LucasZF <[email protected]>
1 parent 1332acb commit ddc0552

File tree

16 files changed

+51
-28
lines changed

16 files changed

+51
-28
lines changed

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,29 @@
5050
- [changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md#7181)
5151
- [diff](https://github.com/getsentry/sentry-java/compare/7.18.0...7.18.1)
5252

53+
## 6.4.0
54+
55+
### Features
56+
57+
- Add Replay Custom Masking for iOS, Android and Web ([#4224](https://github.com/getsentry/sentry-react-native/pull/4224), [#4265](https://github.com/getsentry/sentry-react-native/pull/4265), [#4272](https://github.com/getsentry/sentry-react-native/pull/4272), [#4314](https://github.com/getsentry/sentry-react-native/pull/4314))
58+
59+
```jsx
60+
import * as Sentry from '@sentry/react-native';
61+
62+
const Example = () => {
63+
return (
64+
<View>
65+
<Sentry.Mask>
66+
<Text>${"All children of Sentry.Mask will be masked."}</Text>
67+
</Sentry.Mask>
68+
<Sentry.Unmask>
69+
<Text>${"Only direct children of Sentry.Unmask will be unmasked."}</Text>
70+
</Sentry.Unmask>
71+
</View>
72+
);
73+
};
74+
```
75+
5376
## 6.4.0-beta.1
5477

5578
### Features

dev-packages/e2e-tests/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sentry-react-native-e2e-tests",
3-
"version": "6.4.0-beta.1",
3+
"version": "6.4.0",
44
"private": true,
55
"description": "Sentry React Native End to End Tests Library",
66
"main": "dist/index.js",
@@ -13,7 +13,7 @@
1313
"devDependencies": {
1414
"@babel/preset-env": "^7.25.3",
1515
"@babel/preset-typescript": "^7.18.6",
16-
"@sentry/react-native": "6.4.0-beta.1",
16+
"@sentry/react-native": "6.4.0",
1717
"@sentry/utils": "8.40.0",
1818
"@types/node": "^20.9.3",
1919
"@types/react": "^18.2.64",

dev-packages/type-check/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "sentry-react-native-type-check",
33
"private": true,
4-
"version": "6.4.0-beta.1",
4+
"version": "6.4.0",
55
"scripts": {
66
"type-check": "./run-type-check.sh"
77
}

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
3-
"version": "6.4.0-beta.1",
3+
"version": "6.4.0",
44
"packages": [
55
"packages/*",
66
"dev-packages/*",

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@sentry/react-native",
33
"homepage": "https://github.com/getsentry/sentry-react-native",
44
"repository": "https://github.com/getsentry/sentry-react-native",
5-
"version": "6.4.0-beta.1",
5+
"version": "6.4.0",
66
"description": "Official Sentry SDK for react-native",
77
"typings": "dist/js/index.d.ts",
88
"types": "dist/js/index.d.ts",

packages/core/src/js/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
export const SDK_PACKAGE_NAME = 'npm:@sentry/react-native';
22
export const SDK_NAME = 'sentry.javascript.react-native';
3-
export const SDK_VERSION = '6.4.0-beta.1';
3+
export const SDK_VERSION = '6.4.0';

performance-tests/TestAppPlain/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "TestAppPlain",
3-
"version": "6.4.0-beta.1",
3+
"version": "6.4.0",
44
"private": true,
55
"scripts": {
66
"android": "react-native run-android",

performance-tests/TestAppSentry/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"name": "TestAppSentry",
3-
"version": "6.4.0-beta.1",
3+
"version": "6.4.0",
44
"private": true,
55
"scripts": {
66
"android": "react-native run-android",
77
"ios": "react-native run-ios",
88
"start": "react-native start"
99
},
1010
"dependencies": {
11-
"@sentry/react-native": "6.4.0-beta.1",
11+
"@sentry/react-native": "6.4.0",
1212
"react": "18.1.0",
1313
"react-native": "0.70.6"
1414
},

samples/expo/app.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"slug": "sentry-react-native-expo-sample",
55
"jsEngine": "hermes",
66
"scheme": "sentry-expo-sample",
7-
"version": "6.4.0-beta.1",
7+
"version": "6.4.0",
88
"orientation": "portrait",
99
"icon": "./assets/icon.png",
1010
"userInterfaceStyle": "light",
@@ -19,15 +19,15 @@
1919
"ios": {
2020
"supportsTablet": true,
2121
"bundleIdentifier": "io.sentry.expo.sample",
22-
"buildNumber": "33"
22+
"buildNumber": "34"
2323
},
2424
"android": {
2525
"adaptiveIcon": {
2626
"foregroundImage": "./assets/adaptive-icon.png",
2727
"backgroundColor": "#ffffff"
2828
},
2929
"package": "io.sentry.expo.sample",
30-
"versionCode": 33
30+
"versionCode": 34
3131
},
3232
"web": {
3333
"bundler": "metro",

samples/expo/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sentry-react-native-expo-sample",
3-
"version": "6.4.0-beta.1",
3+
"version": "6.4.0",
44
"main": "expo-router/entry",
55
"scripts": {
66
"start": "expo start",
@@ -16,7 +16,7 @@
1616
"set-version": "npx react-native-version --skip-tag --never-amend"
1717
},
1818
"dependencies": {
19-
"@sentry/react-native": "6.4.0-beta.1",
19+
"@sentry/react-native": "6.4.0",
2020
"@types/react": "~18.3.12",
2121
"expo": "^52.0.0",
2222
"expo-constants": "~17.0.3",

0 commit comments

Comments
 (0)