Skip to content

Commit

Permalink
V7 (#357)
Browse files Browse the repository at this point in the history
  • Loading branch information
kbrandwijk committed Jul 11, 2023
1 parent 665efae commit 11491cb
Show file tree
Hide file tree
Showing 17 changed files with 1,408 additions and 1,601 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,19 @@

### 🧹 Chores

## [7.0.0](https://github.com/expo/sentry-expo/releases/tag/v7.0.0) - 2023-06-16

### 🛠 Breaking changes

- Upgrade `@sentry/react-native` to `5.5.0`. ([#337](https://github.com/expo/sentry-expo/pull/337) by [@krystofwoldrich](https://github.com/krystofwoldrich))
Checkout [the migration guide](https://docs.sentry.io/platforms/react-native/migration/#from-4x-to-5x) for breaking changes

### 🎉 New features

### 🐛 Bug fixes

### 🧹 Chores

## [6.2.2](https://github.com/expo/sentry-expo/releases/tag/v6.2.2) - 2023-06-19

### 🛠 Breaking changes
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@

[![runs with expo](https://img.shields.io/badge/Runs%20with%20Expo-4630EB.svg?style=flat-square&logo=EXPO&labelColor=f3f3f3&logoColor=000)](https://expo.dev/)

# sentry-expo
Expand Down
2 changes: 1 addition & 1 deletion build/integrations/bare.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions build/integrations/bare.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion build/integrations/bare.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion build/version.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { SDK_VERSION as SENTRY_REACT_VERSION } from '@sentry/react';
export declare const SENTRY_EXPO_PACKAGE = "npm:sentry-expo";
export declare const SENTRY_EXPO_VERSION = "6.2.2";
export declare const SENTRY_EXPO_VERSION = "7.0.0";
export declare const SENTRY_REACT_NATIVE_PACKAGE = "npm:@sentry/react-native";
export declare const SENTRY_REACT_PACKAGE = "npm:@sentry/react";
export { SENTRY_REACT_VERSION };
Expand Down
2 changes: 1 addition & 1 deletion build/version.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion build/version.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sentry-expo",
"version": "6.2.2",
"version": "7.0.0",
"description": "Catch your Javascript errors for your production Expo apps!",
"main": "build/index.js",
"types": "build/index.d.ts",
Expand Down Expand Up @@ -39,10 +39,10 @@
"homepage": "https://docs.expo.io/guides/using-sentry/",
"dependencies": {
"@expo/spawn-async": "^1.7.0",
"@sentry/integrations": "7.37.2",
"@sentry/react": "7.37.2",
"@sentry/react-native": "4.15.2",
"@sentry/types": "7.37.2",
"@sentry/integrations": "7.52.1",
"@sentry/react": "7.52.1",
"@sentry/react-native": "5.5.0",
"@sentry/types": "7.52.1",
"mkdirp": "^1.0.4",
"rimraf": "^3.0.2"
},
Expand All @@ -65,9 +65,9 @@
"expo-device": "~5.0.0",
"expo-module-scripts": "3.0.4",
"expo-updates": "~0.15.6",
"jest": "26",
"react": "18.1.0",
"react-native": "^0.70.5",
"jest": "29.5.0",
"react": "18.2.0",
"react-native": "0.71.8",
"react-native-web": "~0.18.9",
"typescript": "^4.7.4"
}
Expand Down
2 changes: 1 addition & 1 deletion plugin/build/withSentryAndroid.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ function modifyAppBuildGradle(buildGradle) {
if (buildGradle.includes('/sentry.gradle"')) {
return buildGradle;
}
// Use the same location that sentry-wizard uses
// Use the same location that sentry-wizard uses
// See: https://github.com/getsentry/sentry-wizard/blob/e9b4522f27a852069c862bd458bdf9b07cab6e33/lib/Steps/Integrations/ReactNative.ts#L232
const pattern = /^android {/m;
if (!buildGradle.match(pattern)) {
Expand Down

0 comments on commit 11491cb

Please sign in to comment.