Skip to content

Commit

Permalink
Merge branch 'next' into tom/add-codeowners-file
Browse files Browse the repository at this point in the history
  • Loading branch information
tomlongridge committed Aug 18, 2020
2 parents d2a2fa6 + 81730c7 commit 2c312a5
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 8 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 7.3.2 (2020-08-17)

### Fixed

- (react-native): Ensure type definitions are included the @bugsnag/react-native package. [#1002](https://github.com/bugsnag/bugsnag-js/pull/1002)

## 7.3.1 (2020-08-11)

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
"packages": [
"packages/*"
],
"version": "7.3.1"
"version": "7.3.2"
}
2 changes: 1 addition & 1 deletion packages/react-native/UPGRADING.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ Inside your `application:didFinishLaunchingWithOptions` method, replace any Bugs

If you have set your API key in `Info.plist`, the format has changed from a top level string to a dictionary. You can now provide many other configuration options in the plist too:

```
```diff
- <key>BugsnagAPIKey</key>
- <string>YOUR_API_KEY</string>
+ <key>bugsnag</key>
Expand Down
2 changes: 1 addition & 1 deletion packages/react-native/package-lock.json

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

3 changes: 2 additions & 1 deletion packages/react-native/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bugsnag/react-native",
"version": "7.3.1",
"version": "7.3.2",
"main": "src/notifier.js",
"types": "types/bugsnag.d.ts",
"description": "Bugsnag error reporter for React Native applications",
Expand All @@ -25,6 +25,7 @@
},
"files": [
"src",
"types/bugsnag.d.ts",
"android/build.gradle",
"android/proguard-rules.pro",
"android/src/main",
Expand Down
8 changes: 4 additions & 4 deletions test/react-native/features/device-ios.feature
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Scenario: Handled JS error
And the event "device.runtimeVersions.reactNative" matches "^\d+\.\d+\.\d+$"
And the event "device.runtimeVersions.osBuild" is not null
And the event "device.runtimeVersions.clangVersion" matches "^\d+\.\d+\.\d+.+$"
And the event "device.runtimeVersions.reactNativeJsEngine" is not null
And the event "device.runtimeVersions.reactNativeJsEngine" equals "jsc"
And the payload field "events.0.device.freeMemory" is greater than 0
And the event "device.manufacturer" equals "Apple"
And the payload field "events.0.device.freeDisk" is greater than 0
Expand All @@ -44,7 +44,7 @@ Scenario: Unhandled JS error
And the event "device.runtimeVersions.reactNative" matches "^\d+\.\d+\.\d+$"
And the event "device.runtimeVersions.osBuild" is not null
And the event "device.runtimeVersions.clangVersion" matches "^\d+\.\d+\.\d+.+$"
And the event "device.runtimeVersions.reactNativeJsEngine" is not null
And the event "device.runtimeVersions.reactNativeJsEngine" equals "jsc"
And the payload field "events.0.device.freeMemory" is greater than 0
And the event "device.manufacturer" equals "Apple"
And the payload field "events.0.device.freeDisk" is greater than 0
Expand All @@ -69,7 +69,7 @@ Scenario: Handled native error
And the event "device.runtimeVersions.reactNative" matches "^\d+\.\d+\.\d+$"
And the event "device.runtimeVersions.osBuild" is not null
And the event "device.runtimeVersions.clangVersion" matches "^\d+\.\d+\.\d+.+$"
And the event "device.runtimeVersions.reactNativeJsEngine" is not null
And the event "device.runtimeVersions.reactNativeJsEngine" equals "jsc"
And the payload field "events.0.device.freeMemory" is greater than 0
And the event "device.manufacturer" equals "Apple"
And the payload field "events.0.device.freeDisk" is greater than 0
Expand All @@ -92,7 +92,7 @@ Scenario: Unhandled native error
And the event "device.time" is a timestamp
And the event "device.locale" is not null
And the event "device.runtimeVersions.reactNative" matches "^\d+\.\d+\.\d+$"
And the event "device.runtimeVersions.reactNativeJsEngine" is not null
And the event "device.runtimeVersions.reactNativeJsEngine" equals "jsc"
And the event "device.runtimeVersions.osBuild" is not null
And the event "device.runtimeVersions.clangVersion" matches "^\d+\.\d+\.\d+.+$"
And the payload field "events.0.device.freeMemory" is greater than 0
Expand Down

0 comments on commit 2c312a5

Please sign in to comment.