expo-updates 57.0.17 → 57.0.18

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
+ ## 57.0.18 — 2026-08-26
14
+
15
+ ### 🐛 Bug fixes
16
+
17
+ - [Android] Apply `reactNativeArchitectures` as a CMake ABI filter so single-ABI builds no longer compile the native code for unused ABIs. ([#49299](https://github.com/expo/expo/pull/49299) by [@alanjhughes](https://github.com/alanjhughes))
18
+
13
19
  ## 57.0.17 — 2026-08-24
14
20
 
15
21
  _This version does not introduce any user-facing changes._
@@ -42,7 +42,7 @@ expoModule {
42
42
  }
43
43
 
44
44
  group = 'host.exp.exponent'
45
- version = '57.0.17'
45
+ version = '57.0.18'
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
@@ -80,6 +80,11 @@ def exUpdatesCopyEmbeddedAssets = getBoolStringFromPropOrEnv("EX_UPDATES_COPY_EM
80
80
 
81
81
  def useDevClient = findProject(":expo-dev-client") != null
82
82
 
83
+ def reactNativeArchitectures() {
84
+ def value = project.getProperties().get("reactNativeArchitectures")
85
+ return value ? value.split(",") : ["armeabi-v7a", "x86", "x86_64", "arm64-v8a"]
86
+ }
87
+
83
88
  android {
84
89
  buildFeatures {
85
90
  buildConfig true
@@ -89,7 +94,7 @@ android {
89
94
  namespace "expo.modules.updates"
90
95
  defaultConfig {
91
96
  versionCode 31
92
- versionName '57.0.17'
97
+ versionName '57.0.18'
93
98
  consumerProguardFiles("proguard-rules.pro")
94
99
  testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
95
100
 
@@ -101,6 +106,7 @@ android {
101
106
 
102
107
  externalNativeBuild {
103
108
  cmake {
109
+ abiFilters(*reactNativeArchitectures())
104
110
  arguments "-DANDROID_STL=c++_shared",
105
111
  "-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON"
106
112
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-updates",
3
- "version": "57.0.17",
3
+ "version": "57.0.18",
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",
@@ -34,7 +34,7 @@
34
34
  "arg": "^4.1.0",
35
35
  "chalk": "^4.1.2",
36
36
  "debug": "^4.3.4",
37
- "expo-eas-client": "~57.0.1",
37
+ "expo-eas-client": "~57.0.2",
38
38
  "expo-manifests": "~57.0.1",
39
39
  "expo-structured-headers": "~57.0.0",
40
40
  "expo-updates-interface": "~57.0.1",
@@ -60,10 +60,10 @@
60
60
  "picomatch": "^4.0.4",
61
61
  "ts-node": "^10.9.2",
62
62
  "xstate": "^4.37.2",
63
- "@expo/metro-config": "57.0.10",
64
- "expo-dev-client": "57.0.15",
63
+ "@expo/metro-config": "57.0.11",
64
+ "expo": "57.0.17",
65
65
  "expo-module-scripts": "56.0.3",
66
- "expo": "57.0.16"
66
+ "expo-dev-client": "57.0.16"
67
67
  },
68
68
  "peerDependencies": {
69
69
  "expo": "*",
@@ -82,7 +82,7 @@
82
82
  "./scripts/with-node.sh"
83
83
  ]
84
84
  },
85
- "gitHead": "52fc013ec8c75e89ba8f83c167e4b6b0416e6bf7",
85
+ "gitHead": "c300d2cc60c9e684e64f48d9bc90ea18a571d01d",
86
86
  "scripts": {
87
87
  "build": "expo-module build",
88
88
  "clean": "expo-module clean",