expo-updates 29.1.0-canary-20251205-756eb7a → 29.1.0-canary-20251206-615dec1

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
@@ -11,6 +11,8 @@
11
11
 
12
12
  ### 🐛 Bug fixes
13
13
 
14
+ - [iOS] forward `PROJECT_ROOT` env var to create updates resources script ([#41418](https://github.com/expo/expo/pull/41418) by [@gabrieldonadel](https://github.com/gabrieldonadel))
15
+
14
16
  ### 💡 Others
15
17
 
16
18
  - [Android] Migrated from `kotlinOptions` to `compilerOptions` DSL. ([#39794](https://github.com/expo/expo/pull/39794) by [@huextrat](https://github.com/huextrat))
@@ -42,7 +42,7 @@ expoModule {
42
42
  }
43
43
 
44
44
  group = 'host.exp.exponent'
45
- version = '29.1.0-canary-20251205-756eb7a'
45
+ version = '29.1.0-canary-20251206-615dec1'
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 '29.1.0-canary-20251205-756eb7a'
92
+ versionName '29.1.0-canary-20251206-615dec1'
93
93
  consumerProguardFiles("proguard-rules.pro")
94
94
  testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
95
95
 
@@ -110,10 +110,11 @@ Pod::Spec.new do |s|
110
110
  end
111
111
 
112
112
  if $expo_updates_create_updates_resources != false
113
+ project_root_env_var = ENV['PROJECT_ROOT'] ? "export PROJECT_ROOT=#{ENV['PROJECT_ROOT']}\n" : ""
113
114
  force_bundling_flag = ex_updates_native_debug ? "export FORCE_BUNDLING=1\n" : ""
114
115
  s.script_phase = {
115
116
  :name => 'Generate updates resources for expo-updates',
116
- :script => force_bundling_flag + 'bash -l -c "$PODS_TARGET_SRCROOT/../scripts/create-updates-resources-ios.sh"',
117
+ :script => project_root_env_var + force_bundling_flag + 'bash -l -c "$PODS_TARGET_SRCROOT/../scripts/create-updates-resources-ios.sh"',
117
118
  :execution_position => :before_compile
118
119
  }
119
120
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-updates",
3
- "version": "29.1.0-canary-20251205-756eb7a",
3
+ "version": "29.1.0-canary-20251206-615dec1",
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",
@@ -39,15 +39,15 @@
39
39
  },
40
40
  "dependencies": {
41
41
  "@expo/code-signing-certificates": "0.0.5",
42
- "@expo/plist": "0.4.9-canary-20251205-756eb7a",
42
+ "@expo/plist": "0.4.9-canary-20251206-615dec1",
43
43
  "@expo/spawn-async": "^1.7.2",
44
44
  "arg": "4.1.0",
45
45
  "chalk": "^4.1.2",
46
46
  "debug": "^4.3.4",
47
- "expo-eas-client": "1.0.9-canary-20251205-756eb7a",
48
- "expo-manifests": "1.0.11-canary-20251205-756eb7a",
49
- "expo-structured-headers": "5.0.1-canary-20251205-756eb7a",
50
- "expo-updates-interface": "2.0.1-canary-20251205-756eb7a",
47
+ "expo-eas-client": "1.0.9-canary-20251206-615dec1",
48
+ "expo-manifests": "1.0.11-canary-20251206-615dec1",
49
+ "expo-structured-headers": "5.0.1-canary-20251206-615dec1",
50
+ "expo-updates-interface": "2.0.1-canary-20251206-615dec1",
51
51
  "getenv": "^2.0.0",
52
52
  "glob": "^13.0.0",
53
53
  "ignore": "^5.3.1",
@@ -59,7 +59,7 @@
59
59
  "@types/node-forge": "^1.0.0",
60
60
  "@types/picomatch": "^4.0.0",
61
61
  "@vercel/ncc": "^0.38.3",
62
- "expo-module-scripts": "5.1.0-canary-20251205-756eb7a",
62
+ "expo-module-scripts": "5.1.0-canary-20251206-615dec1",
63
63
  "express": "^5.1.0",
64
64
  "form-data": "^4.0.4",
65
65
  "memfs": "^3.2.0",
@@ -67,7 +67,7 @@
67
67
  "xstate": "^4.37.2"
68
68
  },
69
69
  "peerDependencies": {
70
- "expo": "55.0.0-canary-20251205-756eb7a",
70
+ "expo": "55.0.0-canary-20251206-615dec1",
71
71
  "react": "*",
72
72
  "react-native": "*"
73
73
  }