expo-updates 0.25.12 → 0.25.14

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,16 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 0.25.14 — 2024-05-16
14
+
15
+ ### 🐛 Bug fixes
16
+
17
+ - Fixed launch crash when using fingerprint runtime version policy on Android with expo-dev-client. ([#28912](https://github.com/expo/expo/pull/28912) by [@kudo](https://github.com/kudo))
18
+
19
+ ## 0.25.13 — 2024-05-15
20
+
21
+ _This version does not introduce any user-facing changes._
22
+
13
23
  ## 0.25.12 — 2024-05-14
14
24
 
15
25
  _This version does not introduce any user-facing changes._
@@ -2,7 +2,7 @@ apply plugin: 'com.android.library'
2
2
  apply plugin: 'kotlin-kapt'
3
3
 
4
4
  group = 'host.exp.exponent'
5
- version = '0.25.12'
5
+ version = '0.25.14'
6
6
 
7
7
  def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
8
8
  apply from: expoModulesCorePlugin
@@ -48,7 +48,7 @@ android {
48
48
  namespace "expo.modules.updates"
49
49
  defaultConfig {
50
50
  versionCode 31
51
- versionName '0.25.12'
51
+ versionName '0.25.14'
52
52
  consumerProguardFiles("proguard-rules.pro")
53
53
  testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
54
54
 
@@ -41,9 +41,9 @@ abstract class ExpoUpdatesPlugin : Plugin<Project> {
41
41
  val createUpdatesResourcesTask = project.tasks.register("create${targetName}UpdatesResources", CreateUpdatesResourcesTask::class.java) {
42
42
  it.description = "expo-updates: Create updates resources for ${targetName}."
43
43
  it.projectRoot.set(projectRoot.toString())
44
- it.entryFile.set(entryFileRelativePath.toString())
45
44
  it.nodeExecutableAndArgs.set(reactExtension.nodeExecutableAndArgs.get())
46
- it.enabled = !isDebuggableVariant
45
+ it.debuggableVariant.set(isDebuggableVariant)
46
+ it.entryFile.set(entryFileRelativePath.toString())
47
47
  }
48
48
  variant.sources.assets?.addGeneratedSourceDirectory(createUpdatesResourcesTask, CreateUpdatesResourcesTask::assetDir)
49
49
  }
@@ -56,6 +56,9 @@ abstract class ExpoUpdatesPlugin : Plugin<Project> {
56
56
  @get:Input
57
57
  abstract val nodeExecutableAndArgs: ListProperty<String>
58
58
 
59
+ @get:Input
60
+ abstract val debuggableVariant: Property<Boolean>
61
+
59
62
  @get:Input
60
63
  abstract val entryFile: Property<String>
61
64
 
@@ -73,7 +76,7 @@ abstract class ExpoUpdatesPlugin : Plugin<Project> {
73
76
  add("android")
74
77
  add(projectRoot.get())
75
78
  add(assetDir.get().toString())
76
- add("all")
79
+ add(if (debuggableVariant.get()) "only-fingerprint" else "all")
77
80
  add(entryFile.get())
78
81
  }
79
82
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-updates",
3
- "version": "0.25.12",
3
+ "version": "0.25.14",
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",
@@ -38,9 +38,9 @@
38
38
  },
39
39
  "dependencies": {
40
40
  "@expo/code-signing-certificates": "0.0.5",
41
- "@expo/config": "~9.0.0-beta.0",
42
- "@expo/config-plugins": "~8.0.0-beta.0",
43
- "@expo/fingerprint": "^0.7.0",
41
+ "@expo/config": "~9.0.0",
42
+ "@expo/config-plugins": "~8.0.0",
43
+ "@expo/fingerprint": "^0.8.0",
44
44
  "@expo/spawn-async": "^1.7.2",
45
45
  "arg": "4.1.0",
46
46
  "chalk": "^4.1.2",
@@ -67,5 +67,5 @@
67
67
  "peerDependencies": {
68
68
  "expo": "*"
69
69
  },
70
- "gitHead": "e4943670c15e4d9b305c80f8c000b2e141fc9a25"
70
+ "gitHead": "d6515f12fc9eee6d563cc4de32f9aee5c856158f"
71
71
  }