expo-updates 0.25.2 → 0.25.3

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,10 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 0.25.3 — 2024-04-24
14
+
15
+ _This version does not introduce any user-facing changes._
16
+
13
17
  ## 0.25.2 — 2024-04-23
14
18
 
15
19
  _This version does not introduce any user-facing changes._
@@ -23,6 +27,7 @@ _This version does not introduce any user-facing changes._
23
27
  ### 💡 Others
24
28
 
25
29
  - Bumped the underlying SQLite version to 3.45.3 on iOS. ([#28358](https://github.com/expo/expo/pull/28358) by [@kudo](https://github.com/kudo))
30
+ - Fixed error recovery E2E test on iOS. ([#28372](https://github.com/expo/expo/pull/28372) by [@kudo](https://github.com/kudo))
26
31
 
27
32
  ## 0.25.0 — 2024-04-18
28
33
 
@@ -2,7 +2,7 @@ apply plugin: 'com.android.library'
2
2
  apply plugin: 'kotlin-kapt'
3
3
 
4
4
  group = 'host.exp.exponent'
5
- version = '0.25.2'
5
+ version = '0.25.3'
6
6
 
7
7
  def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
8
8
  apply from: expoModulesCorePlugin
@@ -48,7 +48,7 @@ android {
48
48
  namespace "expo.modules.updates"
49
49
  defaultConfig {
50
50
  versionCode 31
51
- versionName '0.25.2'
51
+ versionName '0.25.3'
52
52
  consumerProguardFiles("proguard-rules.pro")
53
53
  testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
54
54
 
@@ -65,14 +65,16 @@ describe('Error recovery tests', () => {
65
65
 
66
66
  await Server.serveSignedManifest(manifest, projectRoot);
67
67
 
68
- // launch and crash (restart from cache doesn't work in detox)
68
+ // launch app for error recovery
69
+ try {
70
+ // Detox on Android may timeout from waiting idling resources because Detox doesn't support reloading the app under the hood
71
+ await device.launchApp({
72
+ newInstance: true,
73
+ });
74
+ } catch {}
75
+
69
76
  // we don't check current update ID header or failed update IDs header since the behavior for this request is not defined
70
77
  // (we don't guarantee current update to be set during a crash or the launch failure to have been registered yet)
71
- await jestExpect(
72
- device.launchApp({
73
- newInstance: true,
74
- })
75
- ).rejects.toThrow();
76
78
  const request2 = await Server.waitForUpdateRequest(10000);
77
79
  const request2EmbeddedUpdateId = request2.headers['expo-embedded-update-id'];
78
80
  const request2CurrentUpdateId = request2.headers['expo-current-update-id'];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-updates",
3
- "version": "0.25.2",
3
+ "version": "0.25.3",
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",
@@ -67,5 +67,5 @@
67
67
  "peerDependencies": {
68
68
  "expo": "*"
69
69
  },
70
- "gitHead": "ee4f30ef3b5fa567ad1bf94794197f7683fdd481"
70
+ "gitHead": "f8f9d041c6467f325b58c7913e0f5ed1af102e11"
71
71
  }