expo-updates 0.28.8 → 0.28.9

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,10 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 0.28.9 — 2025-04-28
14
+
15
+ _This version does not introduce any user-facing changes._
16
+
13
17
  ## 0.28.8 — 2025-04-28
14
18
 
15
19
  _This version does not introduce any user-facing changes._
@@ -39,7 +39,7 @@ expoModule {
39
39
  }
40
40
 
41
41
  group = 'host.exp.exponent'
42
- version = '0.28.8'
42
+ version = '0.28.9'
43
43
 
44
44
  // Utility method to derive boolean values from the environment or from Java properties,
45
45
  // and return them as strings to be used in BuildConfig fields
@@ -85,7 +85,7 @@ android {
85
85
  namespace "expo.modules.updates"
86
86
  defaultConfig {
87
87
  versionCode 31
88
- versionName '0.28.8'
88
+ versionName '0.28.9'
89
89
  consumerProguardFiles("proguard-rules.pro")
90
90
  testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
91
91
 
@@ -29,6 +29,10 @@ class AppDelegate: ExpoAppDelegate {
29
29
  var launchOptions: [UIApplication.LaunchOptionsKey: Any]?
30
30
  // AppDelegate keeps a nullable reference to the updates controller
31
31
  var updatesController: (any InternalAppControllerInterface)?
32
+ var window: UIWindow?
33
+
34
+ var reactNativeDelegate: ExpoReactNativeFactoryDelegate?
35
+ var reactNativeFactory: RCTReactNativeFactory?
32
36
 
33
37
  static func shared() -> AppDelegate {
34
38
  guard let delegate = UIApplication.shared.delegate as? AppDelegate else {
@@ -50,8 +54,9 @@ class AppDelegate: ExpoAppDelegate {
50
54
  let factory = ExpoReactNativeFactory(delegate: delegate)
51
55
  delegate.dependencyProvider = RCTAppDependencyProvider()
52
56
 
53
- reactNativeFactoryDelegate = delegate
57
+ reactNativeDelegate = delegate
54
58
  reactNativeFactory = factory
59
+ bindReactNativeFactory(factory)
55
60
 
56
61
  // AppController instance must always be created first.
57
62
  // expo-updates creates a different type of controller
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-updates",
3
- "version": "0.28.8",
3
+ "version": "0.28.9",
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",
@@ -72,5 +72,5 @@
72
72
  "expo": "*",
73
73
  "react": "*"
74
74
  },
75
- "gitHead": "a639a661a5329e58f916cf69b8f1a7718bbdd26e"
75
+ "gitHead": "45bd8a319fb2d6abadac8dcb0c821a55a1f0caa3"
76
76
  }