expo-updates 55.0.1 → 55.0.3

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
+ ## 55.0.3 — 2026-01-22
14
+
15
+ _This version does not introduce any user-facing changes._
16
+
17
+ ## 55.0.2 — 2026-01-22
18
+
19
+ ### 🐛 Bug fixes
20
+
21
+ - Prevent logging on download progress events to reduce log size. ([#42436](https://github.com/expo/expo/pull/42436) by [@alanjhughes](https://github.com/alanjhughes))
22
+
13
23
  ## 55.0.1 — 2026-01-22
14
24
 
15
25
  _This version does not introduce any user-facing changes._
@@ -42,7 +42,7 @@ expoModule {
42
42
  }
43
43
 
44
44
  group = 'host.exp.exponent'
45
- version = '55.0.1'
45
+ version = '55.0.3'
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
@@ -89,7 +89,7 @@ android {
89
89
  namespace "expo.modules.updates"
90
90
  defaultConfig {
91
91
  versionCode 31
92
- versionName '55.0.1'
92
+ versionName '55.0.3'
93
93
  consumerProguardFiles("proguard-rules.pro")
94
94
  testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
95
95
 
@@ -71,7 +71,9 @@ class UpdatesStateMachine(
71
71
  private fun processEvent(event: UpdatesStateEvent) {
72
72
  if (transition(event)) {
73
73
  context = reduceContext(context, event)
74
- logger.info("Updates state change: ${event.type}, context = ${context.json}")
74
+ if (event !is UpdatesStateEvent.DownloadProgress) {
75
+ logger.info("Updates state change: ${event.type}, context = ${context.json}")
76
+ }
75
77
  sendContextToJS()
76
78
  }
77
79
  }
@@ -316,7 +316,9 @@ internal class UpdatesStateMachine {
316
316
  if transition(event) {
317
317
  // Only change context if transition succeeds
318
318
  context = reducedContext(context, event)
319
- logger.info(message: "Updates state change: state = \(state), event = \(event.type), context = \(context)")
319
+ if event.type != .downloadProgress {
320
+ logger.info(message: "Updates state change: state = \(state), event = \(event.type), context = \(context)")
321
+ }
320
322
  sendContextToJS()
321
323
  }
322
324
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-updates",
3
- "version": "55.0.1",
3
+ "version": "55.0.3",
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.6",
42
- "@expo/plist": "^0.5.0",
42
+ "@expo/plist": "^0.5.1",
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": "~55.0.0",
48
- "expo-manifests": "~55.0.0",
47
+ "expo-eas-client": "~55.0.1",
48
+ "expo-manifests": "~55.0.1",
49
49
  "expo-structured-headers": "~55.0.0",
50
- "expo-updates-interface": "~55.0.0",
50
+ "expo-updates-interface": "~55.1.1",
51
51
  "getenv": "^2.0.0",
52
52
  "glob": "^13.0.0",
53
53
  "ignore": "^5.3.1",
@@ -59,7 +59,7 @@
59
59
  "@types/node-forge": "^1.0.0",
60
60
  "@types/picomatch": "^4.0.0",
61
61
  "@vercel/ncc": "^0.38.3",
62
- "expo-module-scripts": "^55.0.0",
62
+ "expo-module-scripts": "^55.0.1",
63
63
  "express": "^5.1.0",
64
64
  "form-data": "^4.0.4",
65
65
  "memfs": "^3.2.0",
@@ -71,5 +71,5 @@
71
71
  "react": "*",
72
72
  "react-native": "*"
73
73
  },
74
- "gitHead": "c7d6f4a7da3ee23f358d214a57029e534bdc69d6"
74
+ "gitHead": "4728ba25fbd4d5835780306de78a83bd1628e271"
75
75
  }