expo-updates 0.26.0 → 0.26.1
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
CHANGED
|
@@ -10,6 +10,16 @@
|
|
|
10
10
|
|
|
11
11
|
### 💡 Others
|
|
12
12
|
|
|
13
|
+
## 0.26.1 — 2024-10-22
|
|
14
|
+
|
|
15
|
+
### 🐛 Bug fixes
|
|
16
|
+
|
|
17
|
+
- Fixed Android launch crash when R8 is enabled. ([#32226](https://github.com/expo/expo/pull/32226) by [@kudo](https://github.com/kudo))
|
|
18
|
+
|
|
19
|
+
### 💡 Others
|
|
20
|
+
|
|
21
|
+
- Fixed updates E2E tests. ([#32226](https://github.com/expo/expo/pull/32226) by [@kudo](https://github.com/kudo))
|
|
22
|
+
|
|
13
23
|
## 0.26.0 — 2024-10-22
|
|
14
24
|
|
|
15
25
|
### 🛠 Breaking changes
|
package/android/build.gradle
CHANGED
|
@@ -16,7 +16,7 @@ apply plugin: 'com.android.library'
|
|
|
16
16
|
apply plugin: 'com.google.devtools.ksp'
|
|
17
17
|
|
|
18
18
|
group = 'host.exp.exponent'
|
|
19
|
-
version = '0.26.
|
|
19
|
+
version = '0.26.1'
|
|
20
20
|
|
|
21
21
|
def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
|
|
22
22
|
apply from: expoModulesCorePlugin
|
|
@@ -62,7 +62,7 @@ android {
|
|
|
62
62
|
namespace "expo.modules.updates"
|
|
63
63
|
defaultConfig {
|
|
64
64
|
versionCode 31
|
|
65
|
-
versionName '0.26.
|
|
65
|
+
versionName '0.26.1'
|
|
66
66
|
consumerProguardFiles("proguard-rules.pro")
|
|
67
67
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
68
68
|
|
|
@@ -3,5 +3,5 @@
|
|
|
3
3
|
}
|
|
4
4
|
|
|
5
5
|
-keepclassmembers class com.facebook.react.devsupport.ReleaseDevSupportManager {
|
|
6
|
-
private final com.facebook.react.bridge.DefaultJSExceptionHandler
|
|
6
|
+
private final com.facebook.react.bridge.DefaultJSExceptionHandler defaultJSExceptionHandler;
|
|
7
7
|
}
|
|
@@ -120,7 +120,7 @@ class ErrorRecovery(
|
|
|
120
120
|
}
|
|
121
121
|
}
|
|
122
122
|
val devSupportManagerClass = devSupportManager.javaClass
|
|
123
|
-
previousExceptionHandler = devSupportManagerClass.getDeclaredField("
|
|
123
|
+
previousExceptionHandler = devSupportManagerClass.getDeclaredField("defaultJSExceptionHandler").let { field ->
|
|
124
124
|
field.isAccessible = true
|
|
125
125
|
val previousValue = field[devSupportManager]
|
|
126
126
|
field[devSupportManager] = defaultJSExceptionHandler
|
|
@@ -152,7 +152,7 @@ class ErrorRecovery(
|
|
|
152
152
|
}
|
|
153
153
|
|
|
154
154
|
val devSupportManagerClass = devSupportManager.javaClass
|
|
155
|
-
devSupportManagerClass.getDeclaredField("
|
|
155
|
+
devSupportManagerClass.getDeclaredField("defaultJSExceptionHandler").let { field ->
|
|
156
156
|
field.isAccessible = true
|
|
157
157
|
field[devSupportManager] = previousExceptionHandler
|
|
158
158
|
}
|
package/e2e/setup/project.ts
CHANGED
|
@@ -474,6 +474,7 @@ function transformAppJsonForE2E(
|
|
|
474
474
|
owner: 'expo-ci',
|
|
475
475
|
runtimeVersion,
|
|
476
476
|
plugins,
|
|
477
|
+
newArchEnabled: false,
|
|
477
478
|
android: { ...appJson.expo.android, package: 'dev.expo.updatese2e' },
|
|
478
479
|
ios: { ...appJson.expo.ios, bundleIdentifier: 'dev.expo.updatese2e' },
|
|
479
480
|
updates: {
|
|
@@ -555,6 +556,7 @@ export function transformAppJsonForUpdatesDisabledE2E(
|
|
|
555
556
|
owner: 'expo-ci',
|
|
556
557
|
runtimeVersion,
|
|
557
558
|
plugins,
|
|
559
|
+
newArchEnabled: false,
|
|
558
560
|
android: { ...appJson.expo.android, package: 'dev.expo.updatese2e' },
|
|
559
561
|
ios: { ...appJson.expo.ios, bundleIdentifier: 'dev.expo.updatese2e' },
|
|
560
562
|
extra: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-updates",
|
|
3
|
-
"version": "0.26.
|
|
3
|
+
"version": "0.26.1",
|
|
4
4
|
"description": "Fetches and manages remotely-hosted assets and updates to your app's JS bundle.",
|
|
5
5
|
"main": "build/index.js",
|
|
6
6
|
"types": "build/index.d.ts",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"@expo/code-signing-certificates": "0.0.5",
|
|
41
41
|
"@expo/config": "~10.0.0",
|
|
42
42
|
"@expo/config-plugins": "~9.0.0",
|
|
43
|
-
"@expo/fingerprint": "^0.
|
|
43
|
+
"@expo/fingerprint": "^0.11.0",
|
|
44
44
|
"@expo/spawn-async": "^1.7.2",
|
|
45
45
|
"arg": "4.1.0",
|
|
46
46
|
"chalk": "^4.1.2",
|
|
@@ -68,5 +68,5 @@
|
|
|
68
68
|
"expo": "*",
|
|
69
69
|
"react": "*"
|
|
70
70
|
},
|
|
71
|
-
"gitHead": "
|
|
71
|
+
"gitHead": "f7adac0a6b82ab484a8254a68c3808ba6f2afde5"
|
|
72
72
|
}
|