expo-updates 0.28.8 → 0.28.10

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
+ ## 0.28.10 — 2025-04-30
14
+
15
+ _This version does not introduce any user-facing changes._
16
+
17
+ ## 0.28.9 — 2025-04-28
18
+
19
+ _This version does not introduce any user-facing changes._
20
+
13
21
  ## 0.28.8 — 2025-04-28
14
22
 
15
23
  _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.10'
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.10'
89
89
  consumerProguardFiles("proguard-rules.pro")
90
90
  testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
91
91
 
@@ -3,5 +3,5 @@
3
3
  }
4
4
 
5
5
  -keepclassmembers class com.facebook.react.devsupport.ReleaseDevSupportManager {
6
- private final com.facebook.react.bridge.DefaultJSExceptionHandler defaultJSExceptionHandler;
6
+ private final com.facebook.react.bridge.JSExceptionHandler defaultJSExceptionHandler;
7
7
  }
@@ -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
@@ -368,13 +368,13 @@ async function preparePackageJson(
368
368
  '@types/react': '~19.0.10',
369
369
  ...extraDevDependencies,
370
370
  ...packageJson.devDependencies,
371
- 'ts-node': '10.9.1',
372
- typescript: '5.2.2',
371
+ 'ts-node': '10.9.2',
372
+ typescript: '5.8.3',
373
373
  },
374
374
  resolutions: {
375
375
  ...expoResolutions,
376
376
  ...packageJson.resolutions,
377
- typescript: '5.2.2',
377
+ typescript: '5.8.3',
378
378
  '@isaacs/cliui': 'npm:cliui@8.0.1', // Fix string-width ESM error
379
379
  },
380
380
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-updates",
3
- "version": "0.28.8",
3
+ "version": "0.28.10",
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",
@@ -40,8 +40,8 @@
40
40
  },
41
41
  "dependencies": {
42
42
  "@expo/code-signing-certificates": "0.0.5",
43
- "@expo/config": "~11.0.5",
44
- "@expo/config-plugins": "~9.1.7",
43
+ "@expo/config": "~11.0.6",
44
+ "@expo/config-plugins": "~10.0.0",
45
45
  "@expo/spawn-async": "^1.7.2",
46
46
  "arg": "4.1.0",
47
47
  "chalk": "^4.1.2",
@@ -72,5 +72,5 @@
72
72
  "expo": "*",
73
73
  "react": "*"
74
74
  },
75
- "gitHead": "a639a661a5329e58f916cf69b8f1a7718bbdd26e"
75
+ "gitHead": "bb2cf89d99a9d7f70b07419cc36cdf80c2764217"
76
76
  }