expo-updates 55.0.23 → 55.0.25
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.25 — 2026-06-25
|
|
14
|
+
|
|
15
|
+
### 💡 Others
|
|
16
|
+
|
|
17
|
+
- [Internal] Align find-up `package.json` search utilities ([#47127](https://github.com/expo/expo/pull/47127) by [@kitten](https://github.com/kitten))
|
|
18
|
+
|
|
19
|
+
## 55.0.24 — 2026-05-21
|
|
20
|
+
|
|
21
|
+
_This version does not introduce any user-facing changes._
|
|
22
|
+
|
|
13
23
|
## 55.0.23 — 2026-05-19
|
|
14
24
|
|
|
15
25
|
### 🐛 Bug fixes
|
package/android/build.gradle
CHANGED
|
@@ -42,7 +42,7 @@ expoModule {
|
|
|
42
42
|
}
|
|
43
43
|
|
|
44
44
|
group = 'host.exp.exponent'
|
|
45
|
-
version = '55.0.
|
|
45
|
+
version = '55.0.25'
|
|
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.
|
|
92
|
+
versionName '55.0.25'
|
|
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.
|
|
3
|
+
"version": "55.0.25",
|
|
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,13 +39,13 @@
|
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
41
|
"@expo/code-signing-certificates": "^0.0.6",
|
|
42
|
-
"@expo/plist": "^0.5.
|
|
42
|
+
"@expo/plist": "^0.5.4",
|
|
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
47
|
"expo-eas-client": "~55.0.5",
|
|
48
|
-
"expo-manifests": "~55.0.
|
|
48
|
+
"expo-manifests": "~55.0.18",
|
|
49
49
|
"expo-structured-headers": "~55.0.2",
|
|
50
50
|
"expo-updates-interface": "~55.1.6",
|
|
51
51
|
"getenv": "^2.0.0",
|
|
@@ -71,5 +71,5 @@
|
|
|
71
71
|
"react": "*",
|
|
72
72
|
"react-native": "*"
|
|
73
73
|
},
|
|
74
|
-
"gitHead": "
|
|
74
|
+
"gitHead": "0c1476ccb1494a2019171f5df1d7a1b7803455e9"
|
|
75
75
|
}
|
|
@@ -7,13 +7,14 @@ exports.findUpProjectRoot = findUpProjectRoot;
|
|
|
7
7
|
const fs_1 = __importDefault(require("fs"));
|
|
8
8
|
const path_1 = __importDefault(require("path"));
|
|
9
9
|
function findUpProjectRoot(cwd) {
|
|
10
|
-
if (
|
|
10
|
+
if (cwd === path_1.default.sep || cwd === '.') {
|
|
11
11
|
return null;
|
|
12
12
|
}
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
13
|
+
for (let dir = cwd; path_1.default.dirname(dir) !== dir; dir = path_1.default.dirname(dir)) {
|
|
14
|
+
const file = path_1.default.resolve(dir, 'package.json');
|
|
15
|
+
if (fs_1.default.existsSync(file)) {
|
|
16
|
+
return dir;
|
|
17
|
+
}
|
|
18
18
|
}
|
|
19
|
+
return null;
|
|
19
20
|
}
|
|
@@ -2,13 +2,15 @@ import fs from 'fs';
|
|
|
2
2
|
import path from 'path';
|
|
3
3
|
|
|
4
4
|
export function findUpProjectRoot(cwd: string): string | null {
|
|
5
|
-
if (
|
|
5
|
+
if (cwd === path.sep || cwd === '.') {
|
|
6
6
|
return null;
|
|
7
7
|
}
|
|
8
8
|
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
9
|
+
for (let dir = cwd; path.dirname(dir) !== dir; dir = path.dirname(dir)) {
|
|
10
|
+
const file = path.resolve(dir, 'package.json');
|
|
11
|
+
if (fs.existsSync(file)) {
|
|
12
|
+
return dir;
|
|
13
|
+
}
|
|
13
14
|
}
|
|
15
|
+
return null;
|
|
14
16
|
}
|