expo-updates 29.0.11-canary-20250912-b5ce2a8 → 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,10 +6,16 @@
6
6
 
7
7
  ### 🎉 New features
8
8
 
9
+ - Remove `ExpoAppDelegate` inheritance requirement ([#39417](https://github.com/expo/expo/pull/39417) by [@gabrieldonadel](https://github.com/gabrieldonadel))
10
+
9
11
  ### 🐛 Bug fixes
10
12
 
13
+ - [iOS] Fix resizeMode on reload screen image. ([#39768](https://github.com/expo/expo/pull/39768) by [@alanjhughes](https://github.com/alanjhughes))
14
+
11
15
  ### 💡 Others
12
16
 
17
+ - [Android] Migrated from `kotlinOptions` to `compilerOptions` DSL. ([#39794](https://github.com/expo/expo/pull/39794) by [@huextrat](https://github.com/huextrat))
18
+
13
19
  ## 29.0.10 — 2025-09-11
14
20
 
15
21
  ### 💡 Others
@@ -42,7 +42,7 @@ expoModule {
42
42
  }
43
43
 
44
44
  group = 'host.exp.exponent'
45
- version = '29.0.11-canary-20250912-b5ce2a8'
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-canary-20250912-b5ce2a8'
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,
@@ -68,11 +68,16 @@ public class ReloadScreenView: UIView {
68
68
  NSLayoutConstraint.activate([
69
69
  imageView.centerXAnchor.constraint(equalTo: centerXAnchor),
70
70
  imageView.centerYAnchor.constraint(equalTo: centerYAnchor),
71
- imageView.widthAnchor.constraint(equalToConstant: scaledWidth),
72
- imageView.heightAnchor.constraint(equalToConstant: scaledHeight)
71
+ imageView.widthAnchor.constraint(equalToConstant: scaledWidth < frame.width ? scaledWidth : frame.width),
72
+ imageView.heightAnchor.constraint(equalToConstant: scaledHeight < frame.height ? scaledHeight : frame.height)
73
73
  ])
74
74
  } else {
75
- addViewConstraints(for: imageView)
75
+ NSLayoutConstraint.activate([
76
+ imageView.centerXAnchor.constraint(equalTo: centerXAnchor),
77
+ imageView.centerYAnchor.constraint(equalTo: centerYAnchor),
78
+ imageView.widthAnchor.constraint(equalTo: widthAnchor),
79
+ imageView.heightAnchor.constraint(equalTo: heightAnchor)
80
+ ])
76
81
  }
77
82
 
78
83
  loadImage(source: url, into: imageView)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-updates",
3
- "version": "29.0.11-canary-20250912-b5ce2a8",
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.8-canary-20250912-b5ce2a8",
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.8-canary-20250912-b5ce2a8",
48
- "expo-manifests": "1.0.9-canary-20250912-b5ce2a8",
49
- "expo-structured-headers": "5.0.1-canary-20250912-b5ce2a8",
50
- "expo-updates-interface": "2.0.1-canary-20250912-b5ce2a8",
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.8-canary-20250912-b5ce2a8",
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,7 +69,7 @@
69
69
  "xstate": "^4.37.2"
70
70
  },
71
71
  "peerDependencies": {
72
- "expo": "55.0.0-canary-20250912-b5ce2a8",
72
+ "expo": "55.0.0-canary-20250919-7a31b96",
73
73
  "react": "*",
74
74
  "react-native": "*"
75
75
  }