expo-updates 29.1.0-canary-20250919-7a31b96 → 29.1.0-canary-20250930-9dc59d3

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
@@ -16,6 +16,10 @@
16
16
 
17
17
  - [Android] Migrated from `kotlinOptions` to `compilerOptions` DSL. ([#39794](https://github.com/expo/expo/pull/39794) by [@huextrat](https://github.com/huextrat))
18
18
 
19
+ ### ⚠️ Notices
20
+
21
+ - Added support for React Native 0.82.x. ([#39678](https://github.com/expo/expo/pull/39678) by [@gabrieldonadel](https://github.com/gabrieldonadel))
22
+
19
23
  ## 29.0.10 — 2025-09-11
20
24
 
21
25
  ### 💡 Others
@@ -42,7 +42,7 @@ expoModule {
42
42
  }
43
43
 
44
44
  group = 'host.exp.exponent'
45
- version = '29.1.0-canary-20250919-7a31b96'
45
+ version = '29.1.0-canary-20250930-9dc59d3'
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.1.0-canary-20250919-7a31b96'
91
+ versionName '29.1.0-canary-20250930-9dc59d3'
92
92
  consumerProguardFiles("proguard-rules.pro")
93
93
  testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
94
94
 
@@ -140,23 +140,23 @@ dependencies {
140
140
  implementation("com.squareup.okhttp3:okhttp:4.9.2")
141
141
  implementation("com.squareup.okhttp3:okhttp-urlconnection:4.9.2")
142
142
  implementation("com.squareup.okhttp3:okhttp-brotli:4.9.2")
143
- implementation("org.bouncycastle:bcutil-jdk15to18:1.78.1")
143
+ implementation("org.bouncycastle:bcutil-jdk15to18:1.81")
144
144
 
145
145
  testImplementation 'junit:junit:4.13.2'
146
- testImplementation 'androidx.test:core:1.6.1'
147
- testImplementation 'com.google.truth:truth:1.1.2'
146
+ testImplementation 'androidx.test:core:1.7.0'
147
+ testImplementation 'com.google.truth:truth:1.4.5'
148
148
  testImplementation "io.mockk:mockk:$mockk_version"
149
149
  testImplementation "org.jetbrains.kotlin:kotlin-test-junit:${kotlinVersion}"
150
- testImplementation 'org.jetbrains.kotlinx:kotlinx-coroutines-test:1.7.3'
151
- testImplementation 'org.robolectric:robolectric:4.14.1'
150
+ testImplementation 'org.jetbrains.kotlinx:kotlinx-coroutines-test:1.10.2'
151
+ testImplementation 'org.robolectric:robolectric:4.16'
152
152
 
153
153
  androidTestImplementation 'com.squareup.okio:okio:2.9.0'
154
- androidTestImplementation 'androidx.test:runner:1.6.2'
155
- androidTestImplementation 'androidx.test:core:1.6.1'
156
- androidTestImplementation 'androidx.test:rules:1.6.1'
154
+ androidTestImplementation 'androidx.test:runner:1.7.0'
155
+ androidTestImplementation 'androidx.test:core:1.7.0'
156
+ androidTestImplementation 'androidx.test:rules:1.7.0'
157
157
  androidTestImplementation "io.mockk:mockk-android:$mockk_version"
158
158
  androidTestImplementation "androidx.room:room-testing:$room_version"
159
- androidTestImplementation 'org.jetbrains.kotlinx:kotlinx-coroutines-test:1.7.3'
159
+ androidTestImplementation 'org.jetbrains.kotlinx:kotlinx-coroutines-test:1.10.2'
160
160
  androidTestImplementation "org.jetbrains.kotlin:kotlin-test-junit:${kotlinVersion}"
161
161
 
162
162
  implementation "org.jetbrains.kotlin:kotlin-reflect:${kotlinVersion}"
@@ -4,7 +4,7 @@ import android.content.Context
4
4
  import androidx.annotation.UiThread
5
5
  import androidx.annotation.WorkerThread
6
6
  import com.facebook.react.ReactActivity
7
- import com.facebook.react.ReactNativeHost
7
+ import com.facebook.react.ReactHost
8
8
  import com.facebook.react.bridge.ReactContext
9
9
  import com.facebook.react.devsupport.interfaces.DevSupportManager
10
10
  import expo.modules.core.interfaces.Package
@@ -53,12 +53,12 @@ class UpdatesPackage : Package {
53
53
 
54
54
  override fun createReactActivityHandlers(activityContext: Context): List<ReactActivityHandler> {
55
55
  val handler = object : ReactActivityHandler {
56
- override fun getDelayLoadAppHandler(activity: ReactActivity, reactNativeHost: ReactNativeHost): ReactActivityHandler.DelayLoadAppHandler? {
56
+ override fun getDelayLoadAppHandler(activity: ReactActivity, reactHost: ReactHost): ReactActivityHandler.DelayLoadAppHandler? {
57
57
  if (!BuildConfig.EX_UPDATES_ANDROID_DELAY_LOAD_APP || isUsingCustomInit) {
58
58
  return null
59
59
  }
60
60
  val context = activity.applicationContext
61
- val useDeveloperSupport = reactNativeHost.useDeveloperSupport
61
+ val useDeveloperSupport = reactHost.devSupportManager?.devSupportEnabled ?: false
62
62
  if (!useDeveloperSupport || isUsingNativeDebug) {
63
63
  return ReactActivityHandler.DelayLoadAppHandler { whenReadyRunnable ->
64
64
  CoroutineScope(Dispatchers.IO).launch {
@@ -2,7 +2,7 @@ import org.jetbrains.kotlin.gradle.dsl.JvmTarget
2
2
  import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
3
3
 
4
4
  plugins {
5
- kotlin("jvm") version("2.0.21")
5
+ kotlin("jvm") version("2.2.0")
6
6
  id("java-gradle-plugin")
7
7
  }
8
8
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-updates",
3
- "version": "29.1.0-canary-20250919-7a31b96",
3
+ "version": "29.1.0-canary-20250930-9dc59d3",
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-20250919-7a31b96",
42
+ "@expo/plist": "0.4.8-canary-20250930-9dc59d3",
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-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",
47
+ "expo-eas-client": "1.0.8-canary-20250930-9dc59d3",
48
+ "expo-manifests": "1.0.9-canary-20250930-9dc59d3",
49
+ "expo-structured-headers": "5.0.1-canary-20250930-9dc59d3",
50
+ "expo-updates-interface": "2.0.1-canary-20250930-9dc59d3",
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-20250919-7a31b96",
63
+ "expo-module-scripts": "5.0.8-canary-20250930-9dc59d3",
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-20250919-7a31b96",
72
+ "expo": "55.0.0-canary-20250930-9dc59d3",
73
73
  "react": "*",
74
74
  "react-native": "*"
75
75
  }