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 e1e7758

Browse files
Merge pull request bugsnag#781 from bugsnag/expo-sdk-37-support
Expo SDK 37 support
2 parents e8adfd7 + 958990c commit e1e7758

File tree

11 files changed

+9837
-4664
lines changed

11 files changed

+9837
-4664
lines changed

‎dockerfiles/Dockerfile.expo-android-builder

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add -
77
RUN echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list
88

99
RUN apt-get update
10-
RUN apt-get install -y nodejs make g++ yarn rsync
10+
RUN apt-get install -y nodejs make g++ yarn rsync jq
1111

1212
WORKDIR /app/test/expo/features/fixtures/test-app
1313

1414
RUN mkdir -p /app/test/expo/features/fixures/build
1515

1616
RUN yarn global add gulp-cli node-gyp
17-
RUN yarn add bunyan rsync turtle-cli@0.13.1
17+
RUN yarn add bunyan rsync turtle-cli@0.14
1818

1919
RUN node_modules/.bin/turtle setup:android
2020

‎packages/delivery-expo/package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎packages/delivery-expo/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"license": "MIT",
2222
"dependencies": {
2323
"@bugsnag/core": "^6.5.0",
24-
"@react-native-community/netinfo": "4.6.0",
24+
"@react-native-community/netinfo": "5.5.0",
2525
"expo-file-system": "^6.0.2"
2626
},
2727
"devDependencies": {

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,13 +76,17 @@ const selectVersion = async (dir) => {
7676
// help select compatible versions of @bugsnag/expo for older expo releases
7777
const isPre33 = (expoVersion && !semver.gte(semver.minVersion(expoVersion), '33.0.0'))
7878
const isPre36 = (expoVersion && !semver.gte(semver.minVersion(expoVersion), '36.0.0'))
79+
const isPre37 = (expoVersion && !semver.gte(semver.minVersion(expoVersion), '37.0.0'))
7980

8081
if (isPre33) {
8182
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'
8283
defaultVersion = '6.3.0'
8384
} else if (isPre36) {
8485
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'
8586
defaultVersion = '6.4.1'
87+
} 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'
8690
}
8791

8892
const { version } = await prompts({

‎packages/plugin-react-native-connectivity-breadcrumbs/package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎packages/plugin-react-native-connectivity-breadcrumbs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"author": "Bugsnag",
2121
"license": "MIT",
2222
"dependencies": {
23-
"@react-native-community/netinfo": "4.6.0"
23+
"@react-native-community/netinfo": "5.5.0"
2424
},
2525
"devDependencies": {
2626
"@bugsnag/core": "^6.5.0",

‎test/expo/features/fixtures/test-app/app.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"name": "Test Fixture",
44
"slug": "test-fixture",
55
"privacy": "unlisted",
6-
"sdkVersion": "36.0.0",
6+
"sdkVersion": "37.0.0",
77
"platforms": [
88
"ios",
99
"android"

0 commit comments

Comments
(0)

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