expo 46.0.0-alpha.2 → 46.0.0-beta.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md ADDED
@@ -0,0 +1,94 @@
1
+ # Changelog
2
+
3
+ ## Unpublished
4
+
5
+ ### 🛠 Breaking changes
6
+
7
+ ### 🎉 New features
8
+
9
+ ### 🐛 Bug fixes
10
+
11
+ ### 💡 Others
12
+
13
+ ## 46.0.0-beta.2 — 2022-07-18
14
+
15
+ _This version does not introduce any user-facing changes._
16
+
17
+ ## 46.0.0-beta.1 — 2022-07-16
18
+
19
+ _This version does not introduce any user-facing changes._
20
+
21
+ ## 46.0.0-alpha.3 — 2022-07-11
22
+
23
+ _This version does not introduce any user-facing changes._
24
+
25
+ ## 46.0.0-alpha.2 — 2022-07-08
26
+
27
+ _This version does not introduce any user-facing changes._
28
+
29
+ ## 46.0.0-alpha.1 — 2022-07-08
30
+
31
+ _This version does not introduce any user-facing changes._
32
+
33
+ ## 46.0.0-alpha.0 — 2022-07-07
34
+
35
+ ### 🎉 New features
36
+
37
+ - Added web support and bundle splitting support to `DevLoadingView`. ([#17714](https://github.com/expo/expo/pull/17714) by [@EvanBacon](https://github.com/EvanBacon))
38
+ - Add `ExpoErrorManager` to improve some commonly logged error messages. ([#18064](https://github.com/expo/expo/pull/18064) by [@esamelson](https://github.com/esamelson))
39
+
40
+ ### 🐛 Bug fixes
41
+
42
+ - On Android fixed `onActivityResult` not being propagated by `ReactDelegate` when Android decides to kill and then recreate application `Activity` when low on resources. ([#17572](https://github.com/expo/expo/pull/17572)) by [@bbarthec](https://github.com/bbarthec))
43
+ - Fixed `Unable to deactivate keep awake. However, it probably is deactivated already` unhandled promise rejection warning when resuming apps on Android. ([#17319](https://github.com/expo/expo/pull/17319) by [@kudo](https://github.com/kudo))
44
+ - Added support for React Native 0.69.x ([#17629](https://github.com/expo/expo/pull/17629) and [#18006](https://github.com/expo/expo/pull/18006) by [@kudo](https://github.com/kudo))
45
+
46
+ ### 📚 3rd party library updates
47
+
48
+ - Update react-native dependency to 0.68.2. ([#17438](https://github.com/expo/expo/pull/17438) by [@kudo](https://github.com/kudo))
49
+
50
+ ## 45.0.0-beta.9 — 2022-04-28
51
+
52
+ _This version does not introduce any user-facing changes._
53
+
54
+ ## 45.0.0-beta.8 — 2022-04-27
55
+
56
+ _This version does not introduce any user-facing changes._
57
+
58
+ ## 45.0.0-beta.7 — 2022-04-27
59
+
60
+ ### 🐛 Bug fixes
61
+
62
+ - Forward CLI exit code to process. ([#17189](https://github.com/expo/expo/pull/17189) by [@EvanBacon](https://github.com/EvanBacon))
63
+
64
+ ## 45.0.0-beta.6 — 2022-04-27
65
+
66
+ _This version does not introduce any user-facing changes._
67
+
68
+ ## 45.0.0-beta.5 — 2022-04-25
69
+
70
+ ### 🐛 Bug fixes
71
+
72
+ - Fix `Overwriting fontFamily style attribute preprocessor` warning when startup. ([#17138](https://github.com/expo/expo/pull/17138) by [@Kudo](https://github.com/Kudo))
73
+
74
+ ## 45.0.0-beta.4 — 2022-04-21
75
+
76
+ _This version does not introduce any user-facing changes._
77
+
78
+ ## 45.0.0-beta.3 — 2022-04-21
79
+
80
+ _This version does not introduce any user-facing changes._
81
+
82
+ ## 45.0.0-beta.2 — 2022-04-20
83
+
84
+ ### 🎉 New features
85
+
86
+ - Add `ReactNativeHostHandler.getUseDeveloperSupport()` to allow `expo-dev-launcher` to override this value at runtime. ([#17069](https://github.com/expo/expo/pull/17069) by [@esamelson](https://github.com/esamelson))
87
+
88
+ ## 45.0.0-beta.1 — 2022-04-18
89
+
90
+ ### 🎉 New features
91
+
92
+ - Add `EXPO_USE_BETA_CLI` to utilize the new `@expo/cli` versioned package. ([#17007](https://github.com/expo/expo/pull/17007) by [@EvanBacon](https://github.com/EvanBacon))
93
+ - Added Android `ReactNativeHostHandler.getJavaScriptExecutorFactory()` for a module to override the `JavaScriptExecutorFactory`. ([#17005](https://github.com/expo/expo/pull/17005) by [@kudo](https://github.com/kudo))
94
+ - Add `react`, `react-native`, `react-dom`, and `react-native-web` to `bundledNativeModules.json`. ([#17048](https://github.com/expo/expo/pull/17048) by [@EvanBacon](https://github.com/EvanBacon))
@@ -0,0 +1,261 @@
1
+
2
+ # Created by https://www.gitignore.io/api/java,maven,gradle,android,intellij,androidstudio
3
+
4
+ ### Android ###
5
+ # Built application files
6
+ *.apk
7
+ *.ap_
8
+
9
+ # Files for the ART/Dalvik VM
10
+ *.dex
11
+
12
+ # Java class files
13
+ *.class
14
+
15
+ # Generated files
16
+ bin/
17
+ gen/
18
+ out/
19
+
20
+ # Gradle files
21
+ .gradle/
22
+ build/
23
+
24
+ # Local configuration file (sdk path, etc)
25
+ local.properties
26
+
27
+ # Proguard folder generated by Eclipse
28
+ proguard/
29
+
30
+ # Log Files
31
+ *.log
32
+
33
+ # Android Studio Navigation editor temp files
34
+ .navigation/
35
+
36
+ # Android Studio captures folder
37
+ captures/
38
+
39
+ # Intellij
40
+ *.iml
41
+ .idea/workspace.xml
42
+ .idea/tasks.xml
43
+ .idea/gradle.xml
44
+ .idea/dictionaries
45
+ .idea/libraries
46
+
47
+ # External native build folder generated in Android Studio 2.2 and later
48
+ .externalNativeBuild
49
+
50
+ # Freeline
51
+ freeline.py
52
+ freeline/
53
+ freeline_project_description.json
54
+
55
+ ### Android Patch ###
56
+ gen-external-apklibs
57
+
58
+ ### AndroidStudio ###
59
+ # Covers files to be ignored for android development using Android Studio.
60
+
61
+ # Built application files
62
+
63
+ # Files for the ART/Dalvik VM
64
+
65
+ # Java class files
66
+
67
+ # Generated files
68
+
69
+ # Gradle files
70
+ .gradle
71
+
72
+ # Signing files
73
+ .signing/
74
+
75
+ # Local configuration file (sdk path, etc)
76
+
77
+ # Proguard folder generated by Eclipse
78
+
79
+ # Log Files
80
+
81
+ # Android Studio
82
+ /*/build/
83
+ /*/local.properties
84
+ /*/out
85
+ /*/*/build
86
+ /*/*/production
87
+ *.ipr
88
+ *~
89
+ *.swp
90
+
91
+ # Android Patch
92
+
93
+ # External native build folder generated in Android Studio 2.2 and later
94
+
95
+ # NDK
96
+ obj/
97
+
98
+ # IntelliJ IDEA
99
+ *.iws
100
+ /out/
101
+
102
+ # User-specific configurations
103
+ .idea/libraries/
104
+ .idea/.name
105
+ .idea/compiler.xml
106
+ .idea/copyright/profiles_settings.xml
107
+ .idea/encodings.xml
108
+ .idea/misc.xml
109
+ .idea/modules.xml
110
+ .idea/scopes/scope_settings.xml
111
+ .idea/vcs.xml
112
+ .idea/jsLibraryMappings.xml
113
+ .idea/datasources.xml
114
+ .idea/dataSources.ids
115
+ .idea/sqlDataSources.xml
116
+ .idea/dynamic.xml
117
+ .idea/uiDesigner.xml
118
+
119
+ # OS-specific files
120
+ .DS_Store
121
+ .DS_Store?
122
+ ._*
123
+ .Spotlight-V100
124
+ .Trashes
125
+ ehthumbs.db
126
+ Thumbs.db
127
+
128
+ # Legacy Eclipse project files
129
+ .classpath
130
+ .project
131
+ .cproject
132
+ .settings/
133
+
134
+ # Mobile Tools for Java (J2ME)
135
+ .mtj.tmp/
136
+
137
+ # Package Files #
138
+ *.war
139
+ *.ear
140
+
141
+ # virtual machine crash logs (Reference: http://www.java.com/en/download/help/error_hotspot.xml)
142
+ hs_err_pid*
143
+
144
+ ## Plugin-specific files:
145
+
146
+ # mpeltonen/sbt-idea plugin
147
+ .idea_modules/
148
+
149
+ # JIRA plugin
150
+ atlassian-ide-plugin.xml
151
+
152
+ # Mongo Explorer plugin
153
+ .idea/mongoSettings.xml
154
+
155
+ ### AndroidStudio Patch ###
156
+
157
+ !/gradle/wrapper/gradle-wrapper.jar
158
+
159
+ ### Intellij ###
160
+ # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
161
+ # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
162
+
163
+ # User-specific stuff:
164
+ .idea/**/workspace.xml
165
+ .idea/**/tasks.xml
166
+
167
+ # Sensitive or high-churn files:
168
+ .idea/**/dataSources/
169
+ .idea/**/dataSources.ids
170
+ .idea/**/dataSources.xml
171
+ .idea/**/dataSources.local.xml
172
+ .idea/**/sqlDataSources.xml
173
+ .idea/**/dynamic.xml
174
+ .idea/**/uiDesigner.xml
175
+
176
+ # Gradle:
177
+ .idea/**/gradle.xml
178
+ .idea/**/libraries
179
+
180
+ # CMake
181
+ cmake-build-debug/
182
+
183
+ # Mongo Explorer plugin:
184
+ .idea/**/mongoSettings.xml
185
+
186
+ ## File-based project format:
187
+
188
+ ## Plugin-specific files:
189
+
190
+ # IntelliJ
191
+
192
+ # mpeltonen/sbt-idea plugin
193
+
194
+ # JIRA plugin
195
+
196
+ # Cursive Clojure plugin
197
+ .idea/replstate.xml
198
+
199
+ # Ruby plugin and RubyMine
200
+ /.rakeTasks
201
+
202
+ ### Intellij Patch ###
203
+ # Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
204
+
205
+ # *.iml
206
+ # modules.xml
207
+ # .idea/misc.xml
208
+ # *.ipr
209
+
210
+ # Sonarlint plugin
211
+ .idea/sonarlint
212
+
213
+ ### Java ###
214
+ # Compiled class file
215
+
216
+ # Log file
217
+
218
+ # BlueJ files
219
+ *.ctxt
220
+
221
+ # Mobile Tools for Java (J2ME)
222
+
223
+ # Package Files #
224
+ *.jar
225
+ *.zip
226
+ *.tar.gz
227
+ *.rar
228
+
229
+ # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
230
+
231
+ ### Maven ###
232
+ target/
233
+ pom.xml.tag
234
+ pom.xml.releaseBackup
235
+ pom.xml.versionsBackup
236
+ pom.xml.next
237
+ release.properties
238
+ dependency-reduced-pom.xml
239
+ buildNumber.properties
240
+ .mvn/timing.properties
241
+
242
+ # Avoid ignoring Maven wrapper jar file (.jar files are usually ignored)
243
+ !/.mvn/wrapper/maven-wrapper.jar
244
+
245
+ ### Gradle ###
246
+ **/build/
247
+
248
+ # Ignore Gradle GUI config
249
+ gradle-app.setting
250
+
251
+ # Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
252
+ !gradle-wrapper.jar
253
+
254
+ # Cache of project
255
+ .gradletasknamecache
256
+
257
+ # # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
258
+ # gradle/wrapper/gradle-wrapper.properties
259
+
260
+
261
+ # End of https://www.gitignore.io/api/java,maven,gradle,android,intellij,androidstudio
@@ -33,7 +33,7 @@ def getRNVersion() {
33
33
  ensureDependeciesWereEvaluated(project)
34
34
 
35
35
  group = 'host.exp.exponent'
36
- version = '46.0.0-alpha.2'
36
+ version = '46.0.0-beta.2'
37
37
 
38
38
  buildscript {
39
39
  def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
@@ -104,7 +104,7 @@ android {
104
104
  minSdkVersion safeExtGet("minSdkVersion", 21)
105
105
  targetSdkVersion safeExtGet("targetSdkVersion", 31)
106
106
  versionCode 1
107
- versionName "46.0.0-alpha.2"
107
+ versionName "46.0.0-beta.2"
108
108
  consumerProguardFiles("proguard-rules.pro")
109
109
  }
110
110
  lintOptions {
@@ -9,23 +9,19 @@
9
9
  "@react-native-picker/picker": "2.4.2",
10
10
  "@react-native-segmented-control/segmented-control": "2.4.0",
11
11
  "@stripe/stripe-react-native": "0.13.1",
12
- "expo-ads-admob": "~13.1.0",
13
- "expo-ads-facebook": "~11.3.0",
14
12
  "expo-analytics-amplitude": "~11.3.0",
15
- "expo-analytics-segment": "~11.3.0",
16
13
  "expo-app-auth": "~11.1.0",
17
14
  "expo-app-loader-provider": "~8.0.0",
18
15
  "expo-app-loading": "~2.1.0",
19
16
  "expo-apple-authentication": "~4.3.0",
20
- "expo-application": "~4.2.0",
17
+ "expo-application": "~4.2.1",
21
18
  "expo-asset": "~8.6.0",
22
- "expo-auth-session": "~3.7.0",
23
- "expo-av": "~12.0.0",
19
+ "expo-auth-session": "~3.7.1",
20
+ "expo-av": "~12.0.2",
24
21
  "expo-background-fetch": "~10.3.0",
25
22
  "expo-barcode-scanner": "~11.4.0",
26
23
  "expo-battery": "~6.3.0",
27
24
  "expo-blur": "~11.2.0",
28
- "expo-branch": "~5.3.0",
29
25
  "expo-brightness": "~10.3.0",
30
26
  "expo-build-properties": "~0.3.0",
31
27
  "expo-calendar": "~10.3.0",
@@ -33,18 +29,17 @@
33
29
  "expo-cellular": "~4.3.0",
34
30
  "expo-checkbox": "~2.2.0",
35
31
  "expo-clipboard": "~3.1.0",
36
- "expo-constants": "~13.2.0",
32
+ "expo-constants": "~13.2.2",
37
33
  "expo-contacts": "~10.3.0",
38
34
  "expo-crypto": "~11.0.0",
39
- "expo-dev-client": "~1.0.0",
35
+ "expo-dev-client": "~1.1.0",
40
36
  "expo-device": "~4.3.0",
41
37
  "expo-document-picker": "~10.3.0",
42
38
  "expo-error-recovery": "~3.2.0",
43
39
  "expo-face-detector": "~11.3.0",
44
- "expo-facebook": "~12.3.0",
45
40
  "expo-file-system": "~14.1.0",
46
- "expo-firebase-analytics": "~7.1.0",
47
- "expo-firebase-core": "~5.1.0",
41
+ "expo-firebase-analytics": "~7.1.1",
42
+ "expo-firebase-core": "~5.1.1",
48
43
  "expo-firebase-recaptcha": "~2.3.0",
49
44
  "expo-font": "~10.2.0",
50
45
  "expo-gl": "~11.4.0",
@@ -53,22 +48,22 @@
53
48
  "expo-haptics": "~11.3.0",
54
49
  "expo-image-loader": "~3.2.0",
55
50
  "expo-image-manipulator": "~10.4.0",
56
- "expo-image-picker": "~13.2.0",
51
+ "expo-image-picker": "~13.3.0",
57
52
  "expo-in-app-purchases": "~13.1.0",
58
53
  "expo-intent-launcher": "~10.3.0",
59
54
  "expo-keep-awake": "~10.2.0",
60
55
  "expo-linear-gradient": "~11.4.0",
61
- "expo-linking": "~3.2.0",
56
+ "expo-linking": "~3.2.1",
62
57
  "expo-local-authentication": "~12.3.0",
63
58
  "expo-localization": "~13.1.0",
64
59
  "expo-location": "~14.3.0",
65
60
  "expo-mail-composer": "~11.3.0",
66
61
  "expo-media-library": "~14.2.0",
67
- "expo-module-template": "~10.7.0",
68
- "expo-modules-core": "~0.11.0",
62
+ "expo-module-template": "~10.7.1",
63
+ "expo-modules-core": "~0.11.3",
69
64
  "expo-navigation-bar": "~1.3.0",
70
65
  "expo-network": "~4.3.0",
71
- "expo-notifications": "~0.16.0",
66
+ "expo-notifications": "~0.16.1",
72
67
  "expo-permissions": "~13.2.0",
73
68
  "expo-print": "~11.3.0",
74
69
  "expo-random": "~12.3.0",
@@ -79,14 +74,14 @@
79
74
  "expo-sharing": "~10.3.0",
80
75
  "expo-sms": "~10.2.0",
81
76
  "expo-speech": "~10.3.0",
82
- "expo-splash-screen": "~0.16.0",
77
+ "expo-splash-screen": "~0.16.1",
83
78
  "expo-sqlite": "~10.3.0",
84
79
  "expo-status-bar": "~1.4.0",
85
80
  "expo-store-review": "~5.3.0",
86
81
  "expo-system-ui": "~1.3.0",
87
82
  "expo-task-manager": "~10.3.0",
88
- "expo-tracking-transparency": "~2.3.0",
89
- "expo-updates": "~0.14.0",
83
+ "expo-tracking-transparency": "~2.3.1",
84
+ "expo-updates": "~0.14.2",
90
85
  "expo-video-thumbnails": "~6.4.0",
91
86
  "expo-web-browser": "~11.0.0",
92
87
  "lottie-react-native": "5.1.3",
@@ -101,7 +96,7 @@
101
96
  "react-native-pager-view": "5.4.24",
102
97
  "react-native-reanimated": "~2.9.1",
103
98
  "react-native-safe-area-context": "4.3.1",
104
- "react-native-screens": "~3.14.1",
99
+ "react-native-screens": "~3.15.0",
105
100
  "react-native-shared-element": "0.8.4",
106
101
  "react-native-svg": "12.3.0",
107
102
  "react-native-view-shot": "3.3.0",
@@ -109,6 +104,6 @@
109
104
  "sentry-expo": "^4.0.0",
110
105
  "unimodules-app-loader": "~3.1.0",
111
106
  "unimodules-image-loader-interface": "~6.1.0",
112
- "@shopify/react-native-skia": "0.1.134",
107
+ "@shopify/react-native-skia": "0.1.136",
113
108
  "@shopify/flash-list": "1.1.0"
114
109
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo",
3
- "version": "46.0.0-alpha.2",
3
+ "version": "46.0.0-beta.2",
4
4
  "description": "The Expo SDK",
5
5
  "main": "build/Expo.js",
6
6
  "module": "build/Expo.js",
@@ -55,18 +55,18 @@
55
55
  "homepage": "https://github.com/expo/expo/tree/main/packages/expo",
56
56
  "dependencies": {
57
57
  "@babel/runtime": "^7.14.0",
58
- "@expo/cli": "0.2.0",
58
+ "@expo/cli": "0.2.2",
59
59
  "@expo/vector-icons": "^13.0.0",
60
60
  "babel-preset-expo": "~9.2.0",
61
61
  "cross-spawn": "^6.0.5",
62
- "expo-application": "~4.2.0",
62
+ "expo-application": "~4.2.1",
63
63
  "expo-asset": "~8.6.0",
64
- "expo-constants": "~13.2.0",
64
+ "expo-constants": "~13.2.2",
65
65
  "expo-file-system": "~14.1.0",
66
66
  "expo-font": "~10.2.0",
67
67
  "expo-keep-awake": "~10.2.0",
68
68
  "expo-modules-autolinking": "0.10.0",
69
- "expo-modules-core": "0.11.0",
69
+ "expo-modules-core": "0.11.3",
70
70
  "fbemitter": "^3.0.0",
71
71
  "getenv": "^1.0.0",
72
72
  "invariant": "^2.2.4",
@@ -90,5 +90,5 @@
90
90
  "react-dom": "18.0.0",
91
91
  "react-native": "0.69.1"
92
92
  },
93
- "gitHead": "aa12080e85dcde534da76d09d58ab62c33ecd45f"
93
+ "gitHead": "5d900179d047d9f4d89c0b9953b7121a1f1df8a2"
94
94
  }