expo-updates 55.0.12 → 55.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,10 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 55.0.13 — 2026-03-11
14
+
15
+ _This version does not introduce any user-facing changes._
16
+
13
17
  ## 55.0.12 — 2026-02-26
14
18
 
15
19
  ### 💡 Others
@@ -42,7 +42,7 @@ expoModule {
42
42
  }
43
43
 
44
44
  group = 'host.exp.exponent'
45
- version = '55.0.12'
45
+ version = '55.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
@@ -89,7 +89,7 @@ android {
89
89
  namespace "expo.modules.updates"
90
90
  defaultConfig {
91
91
  versionCode 31
92
- versionName '55.0.12'
92
+ versionName '55.0.13'
93
93
  consumerProguardFiles("proguard-rules.pro")
94
94
  testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
95
95
 
@@ -188,7 +188,7 @@ abstract class Loader protected constructor(
188
188
  }
189
189
 
190
190
  private suspend fun downloadAllAssets(update: Update): LoaderResult {
191
- val assetList = update.assetEntityList
191
+ val assetList = update.assetEntityList.distinctBy { it.key }
192
192
  assetTotal = assetList.size
193
193
 
194
194
  val embeddedUpdate = loaderFiles.readEmbeddedUpdate(context, configuration)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-updates",
3
- "version": "55.0.12",
3
+ "version": "55.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",
@@ -71,5 +71,5 @@
71
71
  "react": "*",
72
72
  "react-native": "*"
73
73
  },
74
- "gitHead": "413b0450434d3e456eb391eca792ee9ac1e1efec"
74
+ "gitHead": "bcdd2c239f8a92cdf5140e35cde768352630acd6"
75
75
  }