expo-updates 29.0.3 → 29.0.4

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,12 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 29.0.4 — 2025-08-21
14
+
15
+ ### 🐛 Bug fixes
16
+
17
+ - Fix `unexpected ',' separator` issue ([#39027](https://github.com/expo/expo/pull/39027) by [@phil9l](https://github.com/phil9l))
18
+
13
19
  ## 29.0.3 — 2025-08-18
14
20
 
15
21
  _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 = '29.0.3'
45
+ version = '29.0.4'
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.0.3'
91
+ versionName '29.0.4'
92
92
  consumerProguardFiles("proguard-rules.pro")
93
93
  testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
94
94
 
@@ -58,7 +58,7 @@ final class FetchUpdateProcedure: StateMachineProcedure {
58
58
  procedureContext.processStateEvent(.downloadProgress(progress: progress))
59
59
  }
60
60
  remoteAppLoader.loadUpdate(
61
- fromURL: self.config.updateUrl,
61
+ fromURL: self.config.updateUrl
62
62
  ) { updateResponse in
63
63
  if let updateDirective = updateResponse.directiveUpdateResponsePart?.updateDirective {
64
64
  switch updateDirective {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-updates",
3
- "version": "29.0.3",
3
+ "version": "29.0.4",
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",
@@ -45,7 +45,7 @@
45
45
  "chalk": "^4.1.2",
46
46
  "debug": "^4.3.4",
47
47
  "expo-eas-client": "~1.0.2",
48
- "expo-manifests": "~1.0.2",
48
+ "expo-manifests": "~1.0.3",
49
49
  "expo-structured-headers": "~5.0.0",
50
50
  "expo-updates-interface": "~2.0.0",
51
51
  "getenv": "^2.0.0",
@@ -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.2",
63
+ "expo-module-scripts": "^5.0.3",
64
64
  "express": "^5.1.0",
65
65
  "form-data": "^4.0.4",
66
66
  "js-yaml": "^4.1.0",
@@ -73,5 +73,5 @@
73
73
  "react": "*",
74
74
  "react-native": "*"
75
75
  },
76
- "gitHead": "475cdabd3faad56f0e8c4abcaaf21140c01c094f"
76
+ "gitHead": "f2270a4447fa0939e0d6f95c92bf5238e7162a73"
77
77
  }