expo-updates 29.0.12 → 29.0.13

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,12 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 29.0.13 — 2025-11-21
14
+
15
+ ### 🐛 Bug fixes
16
+
17
+ - [Android] Fix issue where launch is called twice on the same database instance. ([#41152](https://github.com/expo/expo/pull/41152) by [@alanjhughes](https://github.com/alanjhughes))
18
+
13
19
  ## 29.0.12 — 2025-10-01
14
20
 
15
21
  ### 🎉 New features
@@ -42,7 +42,7 @@ expoModule {
42
42
  }
43
43
 
44
44
  group = 'host.exp.exponent'
45
- version = '29.0.12'
45
+ version = '29.0.13'
46
46
 
47
47
  // Utility method to derive boolean values from the environment or from Java properties,
48
48
  // and return them as strings to be used in BuildConfig fields
@@ -88,7 +88,7 @@ android {
88
88
  namespace "expo.modules.updates"
89
89
  defaultConfig {
90
90
  versionCode 31
91
- versionName '29.0.12'
91
+ versionName '29.0.13'
92
92
  consumerProguardFiles("proguard-rules.pro")
93
93
  testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
94
94
 
@@ -296,14 +296,13 @@ class LoaderTask(
296
296
  ) {
297
297
  try {
298
298
  val embeddedLoader = EmbeddedLoader(context, configuration, logger, database, directory)
299
- val result = embeddedLoader.load { updateResponse ->
299
+ embeddedLoader.load { _ ->
300
300
  Loader.OnUpdateResponseLoadedResult(shouldDownloadManifestIfPresentInResponse = true)
301
301
  }
302
- launcher.launch(database)
303
302
  } catch (e: Exception) {
304
303
  logger.error("Unexpected error copying embedded update", e, UpdatesErrorCode.Unknown)
305
- launcher.launch(database)
306
304
  }
305
+ launcher.launch(database)
307
306
  } else {
308
307
  launcher.launch(database)
309
308
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-updates",
3
- "version": "29.0.12",
3
+ "version": "29.0.13",
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",
@@ -45,7 +45,7 @@
45
45
  "chalk": "^4.1.2",
46
46
  "debug": "^4.3.4",
47
47
  "expo-eas-client": "~1.0.7",
48
- "expo-manifests": "~1.0.8",
48
+ "expo-manifests": "~1.0.9",
49
49
  "expo-structured-headers": "~5.0.0",
50
50
  "expo-updates-interface": "~2.0.0",
51
51
  "getenv": "^2.0.0",
@@ -73,5 +73,5 @@
73
73
  "react": "*",
74
74
  "react-native": "*"
75
75
  },
76
- "gitHead": "1ab3b9621b78b77b81049ebf06149753a1e0898c"
76
+ "gitHead": "7c8feba9d251fd369968dcdeb3eb388929166387"
77
77
  }