expo-updates 55.0.18 → 55.0.20

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.20 — 2026-04-09
14
+
15
+ ### 🐛 Bug fixes
16
+
17
+ - Pass absolute path to CLI helpers when creating build manifest, since the underlying functions now handle entry file inputs properly, instead of applying `mainModuleName` semantics to them ([#44414](https://github.com/expo/expo/pull/44414) by [@kitten](https://github.com/kitten))
18
+
19
+ ## 55.0.19 — 2026-04-07
20
+
21
+ _This version does not introduce any user-facing changes._
22
+
13
23
  ## 55.0.18 — 2026-04-02
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.18'
45
+ version = '55.0.20'
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.18'
92
+ versionName '55.0.20'
93
93
  consumerProguardFiles("proguard-rules.pro")
94
94
  testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
95
95
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-updates",
3
- "version": "55.0.18",
3
+ "version": "55.0.20",
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": "~55.0.5",
48
- "expo-manifests": "~55.0.13",
48
+ "expo-manifests": "~55.0.15",
49
49
  "expo-structured-headers": "~55.0.2",
50
50
  "expo-updates-interface": "~55.1.5",
51
51
  "getenv": "^2.0.0",
@@ -71,5 +71,5 @@
71
71
  "react": "*",
72
72
  "react-native": "*"
73
73
  },
74
- "gitHead": "20029879d2f953a428d70197fc7e25e4d791848a"
74
+ "gitHead": "b0ada30fd6a819c5f98a23d99b1b89a2ed68743d"
75
75
  }
@@ -11,14 +11,10 @@ const fs_1 = __importDefault(require("fs"));
11
11
  const path_1 = __importDefault(require("path"));
12
12
  const filterPlatformAssetScales_1 = require("./filterPlatformAssetScales");
13
13
  async function createManifestForBuildAsync(platform, projectRoot, destinationDir, entryFileArg) {
14
- let entryFile = entryFileArg ||
14
+ const entryFile = entryFileArg ||
15
15
  process.env.ENTRY_FILE ||
16
- (0, paths_1.resolveRelativeEntryPoint)(projectRoot, { platform }) ||
16
+ (0, paths_1.resolveEntryPoint)(projectRoot, { platform }) ||
17
17
  'index.js';
18
- // Android uses absolute paths for the entry file, so we need to convert that to a relative path.
19
- if (path_1.default.isAbsolute(entryFile)) {
20
- entryFile = (0, paths_1.convertEntryPointToRelative)(projectRoot, entryFile);
21
- }
22
18
  process.chdir(projectRoot);
23
19
  const options = {
24
20
  platform,
@@ -1,6 +1,6 @@
1
1
  import type { HashedAssetData } from '@expo/metro-config/build/transform-worker/getAssets';
2
2
  import crypto from 'crypto';
3
- import { convertEntryPointToRelative, resolveRelativeEntryPoint } from 'expo/config/paths';
3
+ import { resolveEntryPoint } from 'expo/config/paths';
4
4
  import {
5
5
  drawableFileTypes,
6
6
  createMetroServerAndBundleRequestAsync,
@@ -18,17 +18,12 @@ export async function createManifestForBuildAsync(
18
18
  destinationDir: string,
19
19
  entryFileArg?: string
20
20
  ): Promise<void> {
21
- let entryFile =
21
+ const entryFile =
22
22
  entryFileArg ||
23
23
  process.env.ENTRY_FILE ||
24
- resolveRelativeEntryPoint(projectRoot, { platform }) ||
24
+ resolveEntryPoint(projectRoot, { platform }) ||
25
25
  'index.js';
26
26
 
27
- // Android uses absolute paths for the entry file, so we need to convert that to a relative path.
28
- if (path.isAbsolute(entryFile)) {
29
- entryFile = convertEntryPointToRelative(projectRoot, entryFile);
30
- }
31
-
32
27
  process.chdir(projectRoot);
33
28
 
34
29
  const options = {