Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Publish/6.4.0 #4344

Merged
merged 5 commits into from
Dec 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,29 @@
- [changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md#7181)
- [diff](https://github.com/getsentry/sentry-java/compare/7.18.0...7.18.1)

## 6.4.0

### Features

- 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))

```jsx
import * as Sentry from '@sentry/react-native';

const Example = () => {
return (
<View>
<Sentry.Mask>
<Text>${"All children of Sentry.Mask will be masked."}</Text>
</Sentry.Mask>
<Sentry.Unmask>
<Text>${"Only direct children of Sentry.Unmask will be unmasked."}</Text>
</Sentry.Unmask>
</View>
);
};
```

## 6.4.0-beta.1

### Features
Expand Down
4 changes: 2 additions & 2 deletions dev-packages/e2e-tests/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sentry-react-native-e2e-tests",
"version": "6.4.0-beta.1",
"version": "6.4.0",
"private": true,
"description": "Sentry React Native End to End Tests Library",
"main": "dist/index.js",
Expand All @@ -13,7 +13,7 @@
"devDependencies": {
"@babel/preset-env": "^7.25.3",
"@babel/preset-typescript": "^7.18.6",
"@sentry/react-native": "6.4.0-beta.1",
"@sentry/react-native": "6.4.0",
"@sentry/utils": "8.40.0",
"@types/node": "^20.9.3",
"@types/react": "^18.2.64",
Expand Down
2 changes: 1 addition & 1 deletion dev-packages/type-check/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "sentry-react-native-type-check",
"private": true,
"version": "6.4.0-beta.1",
"version": "6.4.0",
"scripts": {
"type-check": "./run-type-check.sh"
}
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
"version": "6.4.0-beta.1",
"version": "6.4.0",
"packages": [
"packages/*",
"dev-packages/*",
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@sentry/react-native",
"homepage": "https://github.com/getsentry/sentry-react-native",
"repository": "https://github.com/getsentry/sentry-react-native",
"version": "6.4.0-beta.1",
"version": "6.4.0",
"description": "Official Sentry SDK for react-native",
"typings": "dist/js/index.d.ts",
"types": "dist/js/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/js/version.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export const SDK_PACKAGE_NAME = 'npm:@sentry/react-native';
export const SDK_NAME = 'sentry.javascript.react-native';
export const SDK_VERSION = '6.4.0-beta.1';
export const SDK_VERSION = '6.4.0';
2 changes: 1 addition & 1 deletion performance-tests/TestAppPlain/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "TestAppPlain",
"version": "6.4.0-beta.1",
"version": "6.4.0",
"private": true,
"scripts": {
"android": "react-native run-android",
Expand Down
4 changes: 2 additions & 2 deletions performance-tests/TestAppSentry/package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "TestAppSentry",
"version": "6.4.0-beta.1",
"version": "6.4.0",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start"
},
"dependencies": {
"@sentry/react-native": "6.4.0-beta.1",
"@sentry/react-native": "6.4.0",
"react": "18.1.0",
"react-native": "0.70.6"
},
Expand Down
6 changes: 3 additions & 3 deletions samples/expo/app.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"slug": "sentry-react-native-expo-sample",
"jsEngine": "hermes",
"scheme": "sentry-expo-sample",
"version": "6.4.0-beta.1",
"version": "6.4.0",
"orientation": "portrait",
"icon": "./assets/icon.png",
"userInterfaceStyle": "light",
Expand All @@ -19,15 +19,15 @@
"ios": {
"supportsTablet": true,
"bundleIdentifier": "io.sentry.expo.sample",
"buildNumber": "33"
"buildNumber": "34"
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#ffffff"
},
"package": "io.sentry.expo.sample",
"versionCode": 33
"versionCode": 34
},
"web": {
"bundler": "metro",
Expand Down
4 changes: 2 additions & 2 deletions samples/expo/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sentry-react-native-expo-sample",
"version": "6.4.0-beta.1",
"version": "6.4.0",
"main": "expo-router/entry",
"scripts": {
"start": "expo start",
Expand All @@ -16,7 +16,7 @@
"set-version": "npx react-native-version --skip-tag --never-amend"
},
"dependencies": {
"@sentry/react-native": "6.4.0-beta.1",
"@sentry/react-native": "6.4.0",
"@types/react": "~18.3.12",
"expo": "^52.0.0",
"expo-constants": "~17.0.3",
Expand Down
4 changes: 2 additions & 2 deletions samples/react-native-macos/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sentry-react-native-macos-sample",
"version": "6.4.0-beta.1",
"version": "6.4.0",
"private": true,
"scripts": {
"start": "react-native start --experimental-debugger",
Expand All @@ -17,7 +17,7 @@
"@react-navigation/native": "^6.1.9",
"@react-navigation/stack": "^6.3.20",
"@sentry/react": "8.40.0",
"@sentry/react-native": "6.4.0-beta.1",
"@sentry/react-native": "6.4.0",
"@sentry/types": "8.40.0",
"@sentry/utils": "8.40.0",
"delay": "^6.0.0",
Expand Down
4 changes: 2 additions & 2 deletions samples/react-native/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,8 @@ android {
applicationId "io.sentry.reactnative.sample"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 35
versionName "6.4.0-beta.1"
versionCode 36
versionName "6.4.0"
}

signingConfigs {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>40</string>
<string>41</string>
<key>LSRequiresIPhoneOS</key>
<true />
<key>NSAppTransportSecurity</key>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>40</string>
<string>41</string>
</dict>
</plist>
4 changes: 2 additions & 2 deletions samples/react-native/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sentry-react-native-sample",
"version": "6.4.0-beta.1",
"version": "6.4.0",
"private": true,
"scripts": {
"postinstall": "patch-package",
Expand All @@ -25,7 +25,7 @@
"@react-navigation/native": "^7.0.3",
"@react-navigation/native-stack": "^7.0.3",
"@react-navigation/stack": "^7.0.3",
"@sentry/react-native": "6.4.0-beta.1",
"@sentry/react-native": "6.4.0",
"delay": "^6.0.0",
"react": "18.3.1",
"react-native": "0.76.3",
Expand Down
12 changes: 6 additions & 6 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -7818,7 +7818,7 @@ __metadata:
languageName: node
linkType: hard

"@sentry/react-native@6.4.0-beta.1, @sentry/react-native@workspace:packages/core":
"@sentry/react-native@6.4.0, @sentry/react-native@workspace:packages/core":
version: 0.0.0-use.local
resolution: "@sentry/react-native@workspace:packages/core"
dependencies:
Expand Down Expand Up @@ -9493,7 +9493,7 @@ __metadata:
dependencies:
"@babel/core": ^7.12.9
"@babel/runtime": ^7.12.5
"@sentry/react-native": 6.4.0-beta.1
"@sentry/react-native": 6.4.0
metro-react-native-babel-preset: ^0.72.3
react: 18.1.0
react-native: 0.70.6
Expand Down Expand Up @@ -24294,7 +24294,7 @@ __metadata:
dependencies:
"@babel/preset-env": ^7.25.3
"@babel/preset-typescript": ^7.18.6
"@sentry/react-native": 6.4.0-beta.1
"@sentry/react-native": 6.4.0
"@sentry/utils": 8.40.0
"@types/node": ^20.9.3
"@types/react": ^18.2.64
Expand Down Expand Up @@ -24324,7 +24324,7 @@ __metadata:
"@babel/core": ^7.26.0
"@babel/preset-env": ^7.26.0
"@sentry/babel-plugin-component-annotate": ^2.18.0
"@sentry/react-native": 6.4.0-beta.1
"@sentry/react-native": 6.4.0
"@types/node": 20.10.4
"@types/react": ~18.3.12
expo: ^52.0.0
Expand Down Expand Up @@ -24359,7 +24359,7 @@ __metadata:
"@react-navigation/native": ^6.1.9
"@react-navigation/stack": ^6.3.20
"@sentry/react": 8.40.0
"@sentry/react-native": 6.4.0-beta.1
"@sentry/react-native": 6.4.0
"@sentry/types": 8.40.0
"@sentry/utils": 8.40.0
"@types/react": ^18.2.65
Expand Down Expand Up @@ -24406,7 +24406,7 @@ __metadata:
"@react-navigation/native-stack": ^7.0.3
"@react-navigation/stack": ^7.0.3
"@sentry/babel-plugin-component-annotate": ^2.18.0
"@sentry/react-native": 6.4.0-beta.1
"@sentry/react-native": 6.4.0
"@types/react": ^18.2.65
"@types/react-native-vector-icons": ^6.4.18
"@types/react-test-renderer": ^18.0.0
Expand Down
Loading