Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit c0ed3c5

Browse files
Merge branch 'next' into v7
2 parents 0129864 + b0fde56 commit c0ed3c5

File tree

2 files changed

+14
-6
lines changed

2 files changed

+14
-6
lines changed

‎CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,15 @@
4444
- Remove `client.app` property [#677](https://github.com/bugsnag/bugsnag-js/pull/677)
4545
- Move breadcrumbs to a private property on `client._breadcrumbs` [#681](https://github.com/bugsnag/bugsnag-js/pull/681)
4646

47+
## 6.6.1 (2020年04月03日)
48+
49+
### Fix
50+
51+
- (expo): Ensure Expo packages that depend on `NetInfo` have their versions locked [#796](https://github.com/bugsnag/bugsnag-js/pull/796)
52+
- (expo-cli): Update Expo versions installed by the cli [#796](https://github.com/bugsnag/bugsnag-js/pull/796)
53+
54+
Note, alongside this release, additional patches were made to previous minor versions of `@bugsnag/expo`: `6.5.3` and `6.4.4`. This is to ensure the correct version of `NetInfo` is depended on for SDK versions 36 and 34 respectively.
55+
4756
## 6.6.0 (2020年04月02日)
4857

4958
### Changed

‎packages/expo-cli/commands/install.js

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -79,14 +79,13 @@ const selectVersion = async (dir) => {
7979
const isPre37 = (expoVersion && !semver.gte(semver.minVersion(expoVersion), '37.0.0'))
8080

8181
if (isPre33) {
82-
message = 'It looks like you’re using a version of Expo SDK <33. The last version of Bugsnag that supported your version of Expo is v6.3.0'
83-
defaultVersion = '6.3.0'
82+
throw new Error('Expo SDK <33 is no longer supported')
8483
} else if (isPre36) {
85-
message = 'It looks like you’re using a version of Expo SDK <36. The last version of Bugsnag that supported your version of Expo is v6.4.1'
86-
defaultVersion = '6.4.1'
84+
message = 'It looks like you’re using a version of Expo SDK <36. The last version of Bugsnag that supported your version of Expo is v6.4.4'
85+
defaultVersion = '6.4.4'
8786
} else if (isPre37) {
88-
message = 'It looks like you’re using a version of Expo SDK <37. The last version of Bugsnag that supported your version of Expo is v6.5.1'
89-
defaultVersion = '6.5.1'
87+
message = 'It looks like you’re using a version of Expo SDK <37. The last version of Bugsnag that supported your version of Expo is v6.5.3'
88+
defaultVersion = '6.5.3'
9089
}
9190

9291
const { version } = await prompts({

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /