expo-updates 55.0.13 → 55.0.15

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,14 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 55.0.15 — 2026-03-19
14
+
15
+ _This version does not introduce any user-facing changes._
16
+
17
+ ## 55.0.14 — 2026-03-17
18
+
19
+ _This version does not introduce any user-facing changes._
20
+
13
21
  ## 55.0.13 — 2026-03-11
14
22
 
15
23
  _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 = '55.0.13'
45
+ version = '55.0.15'
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.13'
92
+ versionName '55.0.15'
93
93
  consumerProguardFiles("proguard-rules.pro")
94
94
  testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
95
95
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-updates",
3
- "version": "55.0.13",
3
+ "version": "55.0.15",
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": "~55.0.2",
48
- "expo-manifests": "~55.0.9",
48
+ "expo-manifests": "~55.0.11",
49
49
  "expo-structured-headers": "~55.0.0",
50
50
  "expo-updates-interface": "~55.1.3",
51
51
  "getenv": "^2.0.0",
@@ -71,5 +71,5 @@
71
71
  "react": "*",
72
72
  "react-native": "*"
73
73
  },
74
- "gitHead": "bcdd2c239f8a92cdf5140e35cde768352630acd6"
74
+ "gitHead": "b3f5ca76f340baa8a33f89853f14fce2a86dd29a"
75
75
  }
@@ -26,7 +26,7 @@ RCT_METRO_PORT=${RCT_METRO_PORT:=8081}
26
26
  # `$PROJECT_DIR` is passed by Xcode as the directory to the xcodeproj file.
27
27
  # in classic main project setup it is something like /path/to/app/ios
28
28
  # in new style pod project setup it is something like /path/to/app/ios/Pods
29
- PROJECT_DIR_BASENAME=$(basename $PROJECT_DIR)
29
+ PROJECT_DIR_BASENAME=$(basename "$PROJECT_DIR")
30
30
  if [ "x$PROJECT_DIR_BASENAME" != "xPods" ]; then
31
31
  exit 0
32
32
  fi
@@ -41,6 +41,7 @@ PROJECT_ROOT="$(pwd -P)"
41
41
 
42
42
  if [ "$BUNDLE_FORMAT" == "shallow" ]; then
43
43
  RESOURCE_DEST="$DEST/$RESOURCE_BUNDLE_NAME"
44
+ mkdir -p "$RESOURCE_DEST"
44
45
  elif [ "$BUNDLE_FORMAT" == "deep" ]; then
45
46
  RESOURCE_DEST="$DEST/$RESOURCE_BUNDLE_NAME/Contents/Resources"
46
47
  mkdir -p "$RESOURCE_DEST"