expo-updates 29.0.11 → 29.1.0-canary-20250919-7a31b96

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
@@ -6,16 +6,16 @@
6
6
 
7
7
  ### 🎉 New features
8
8
 
9
- ### 🐛 Bug fixes
10
-
11
- ### 💡 Others
12
-
13
- ## 29.0.11 — 2025-09-18
9
+ - Remove `ExpoAppDelegate` inheritance requirement ([#39417](https://github.com/expo/expo/pull/39417) by [@gabrieldonadel](https://github.com/gabrieldonadel))
14
10
 
15
11
  ### 🐛 Bug fixes
16
12
 
17
13
  - [iOS] Fix resizeMode on reload screen image. ([#39768](https://github.com/expo/expo/pull/39768) by [@alanjhughes](https://github.com/alanjhughes))
18
14
 
15
+ ### 💡 Others
16
+
17
+ - [Android] Migrated from `kotlinOptions` to `compilerOptions` DSL. ([#39794](https://github.com/expo/expo/pull/39794) by [@huextrat](https://github.com/huextrat))
18
+
19
19
  ## 29.0.10 — 2025-09-11
20
20
 
21
21
  ### 💡 Others
@@ -42,7 +42,7 @@ expoModule {
42
42
  }
43
43
 
44
44
  group = 'host.exp.exponent'
45
- version = '29.0.11'
45
+ version = '29.1.0-canary-20250919-7a31b96'
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.11'
91
+ versionName '29.1.0-canary-20250919-7a31b96'
92
92
  consumerProguardFiles("proguard-rules.pro")
93
93
  testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
94
94
 
@@ -56,7 +56,6 @@ class AppDelegate: ExpoAppDelegate {
56
56
 
57
57
  reactNativeDelegate = delegate
58
58
  reactNativeFactory = factory
59
- bindReactNativeFactory(factory)
60
59
 
61
60
  // AppController instance must always be created first.
62
61
  // expo-updates creates a different type of controller
@@ -1,3 +1,4 @@
1
+ import org.jetbrains.kotlin.gradle.dsl.JvmTarget
1
2
  import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
2
3
 
3
4
  plugins {
@@ -22,8 +23,8 @@ java {
22
23
  }
23
24
 
24
25
  tasks.withType<KotlinCompile> {
25
- kotlinOptions {
26
- jvmTarget = JavaVersion.VERSION_11.toString()
26
+ compilerOptions {
27
+ jvmTarget.set(JvmTarget.JVM_11)
27
28
  }
28
29
  }
29
30
 
@@ -76,12 +76,7 @@ public final class ExpoUpdatesReactDelegateHandler: ExpoReactDelegateHandler, Ap
76
76
  fatalError("`reactDelegate` should not be nil")
77
77
  }
78
78
 
79
- guard let appDelegate = (UIApplication.shared.delegate as? (any ReactNativeFactoryProvider)) ??
80
- ((UIApplication.shared.delegate as? NSObject)?.value(forKey: "_expoAppDelegate") as? (any ReactNativeFactoryProvider)) else {
81
- fatalError("`UIApplication.shared.delegate` must be an `ExpoAppDelegate` or `EXAppDelegateWrapper`")
82
- }
83
-
84
- let rootView = appDelegate.recreateRootView(
79
+ let rootView = reactDelegate.reactNativeFactory.recreateRootView(
85
80
  withBundleURL: AppController.sharedInstance.launchAssetUrl(),
86
81
  moduleName: self.rootViewModuleName,
87
82
  initialProps: self.rootViewInitialProperties,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-updates",
3
- "version": "29.0.11",
3
+ "version": "29.1.0-canary-20250919-7a31b96",
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.7",
42
+ "@expo/plist": "0.4.8-canary-20250919-7a31b96",
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.7",
48
- "expo-manifests": "~1.0.8",
49
- "expo-structured-headers": "~5.0.0",
50
- "expo-updates-interface": "~2.0.0",
47
+ "expo-eas-client": "1.0.8-canary-20250919-7a31b96",
48
+ "expo-manifests": "1.0.9-canary-20250919-7a31b96",
49
+ "expo-structured-headers": "5.0.1-canary-20250919-7a31b96",
50
+ "expo-updates-interface": "2.0.1-canary-20250919-7a31b96",
51
51
  "getenv": "^2.0.0",
52
52
  "glob": "^10.4.2",
53
53
  "ignore": "^5.3.1",
@@ -60,7 +60,7 @@
60
60
  "@types/node-forge": "^1.0.0",
61
61
  "@types/picomatch": "^4.0.0",
62
62
  "@vercel/ncc": "^0.38.3",
63
- "expo-module-scripts": "^5.0.7",
63
+ "expo-module-scripts": "5.0.8-canary-20250919-7a31b96",
64
64
  "express": "^5.1.0",
65
65
  "form-data": "^4.0.4",
66
66
  "js-yaml": "^4.1.0",
@@ -69,9 +69,8 @@
69
69
  "xstate": "^4.37.2"
70
70
  },
71
71
  "peerDependencies": {
72
- "expo": "*",
72
+ "expo": "55.0.0-canary-20250919-7a31b96",
73
73
  "react": "*",
74
74
  "react-native": "*"
75
- },
76
- "gitHead": "0d9ae61f3dea2e2b854576859e5b50fca5503fc1"
75
+ }
77
76
  }