Skip to content

Commit b79ac90

Browse files
committed
5.0.3
1 parent 742ff2c commit b79ac90

File tree

2 files changed

+11
-8
lines changed

2 files changed

+11
-8
lines changed

CHANGELOG.md

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,15 @@
88

99
### 🐛 Bug fixes
1010

11+
### 🧹 Chores
12+
13+
## [5.0.3](https://github.com/expo/sentry-expo/releases/tag/v5.0.3) - 2022-10-08
14+
15+
### 🐛 Bug fixes
16+
1117
- Added `expo` to `peerDependencies` to match own `peerDependencies`. ([#286](https://github.com/expo/sentry-expo/pull/286) by [@SimenB](https://github.com/SimenB))
1218
- Fix issue with config plugin being unable to modify Android gradle file with Expo 46. ([#290](https://github.com/expo/sentry-expo/pull/290)) by [@kbrandwijk](https://github.com/kbrandwijk))
1319

14-
### 🧹 Chores
15-
1620
## [5.0.2](https://github.com/expo/sentry-expo/releases/tag/v5.0.2) - 2022-08-09
1721

1822
### 🧹 Chores
@@ -100,8 +104,7 @@
100104

101105
```json
102106
"plugins": ["sentry-expo"]
103-
```
104-
to your app.json or app.config.js. This will also auto-configure Sentry for bare workflow projects when you run `expo eject`.
107+
```to your app.json or app.config.js. This will also auto-configure Sentry for bare workflow projects when you run `expo eject`.
105108

106109
- `sentry-expo` now supports sending sessions data. See Sentry's [Release Health docs to learn more](https://docs.sentry.io/product/releases/health/).
107110

@@ -138,10 +141,10 @@ to your app.json or app.config.js. This will also auto-configure Sentry for bare
138141
- Exports from `@sentry/react-native` or `@sentry/browser` are now namespaced.
139142

140143
```js
141-
import { Native, Browser } from 'sentry-expo';
142-
144+
import { Native, Browser } from 'sentry-expo';
145+
143146
const { ReactNativeClient } = Native;
144-
const { Transports } = Browser;
147+
const { Transports } = Browser;
145148
```- The iOS sourcemap files' names were changed from `main.ios.bundle` and `main.ios.map` to `main.jsbundle` and `main.jsbundle.map`, respectively. This matches the filenames created in the bare workflow during [no publish builds](https://github.com/expo/sentry-expo#configure-no-publish-builds). This only affects you if you were manually generating & uploading sourcemaps to Sentry, rather than relying on `expo publish` or `expo export`. [#129](https://github.com/expo/sentry-expo/pull/129)
146149
- The Android sourcemap files' names were changed from `main.android.bundle` and `main.android.map` to `index.android.bundle` and `index.android.bundle.map`, respectively. This matches the filenames created in the bare workflow during [no publish builds](https://github.com/expo/sentry-expo#configure-no-publish-builds). This only affects you if you were manually generating & uploading sourcemaps to Sentry, rather than relying on `expo publish` or `expo export`. [#130](https://github.com/expo/sentry-expo/pull/130)
147150
- `sentry-expo` now sets your release's `distribution` automatically, defaulting to your app's `version` (`version` in app.json) but can be overriden with `distribution` in the `postPublish` hooks config, or the `SENTRY_DIST` environment variable. If you override the `distribution`, make sure you pass the same value to `dist` in your call to `Sentry.init()`. [#136](https://github.com/expo/sentry-expo/pull/136)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sentry-expo",
3-
"version": "5.0.2",
3+
"version": "5.0.3",
44
"description": "Catch your Javascript errors for your production Expo apps!",
55
"main": "build/index.js",
66
"types": "build/index.d.ts",

0 commit comments

Comments
 (0)