expo-updates 29.0.9 → 29.0.10
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.10 — 2025-09-11
|
|
14
|
+
|
|
15
|
+
### 💡 Others
|
|
16
|
+
|
|
17
|
+
- Surface iOS compilation errors in updates E2E tests. ([#39542](https://github.com/expo/expo/pull/39542) by [@douglowder](https://github.com/douglowder))
|
|
18
|
+
|
|
13
19
|
## 29.0.9 — 2025-09-10
|
|
14
20
|
|
|
15
21
|
### 🐛 Bug fixes
|
package/android/build.gradle
CHANGED
|
@@ -42,7 +42,7 @@ expoModule {
|
|
|
42
42
|
}
|
|
43
43
|
|
|
44
44
|
group = 'host.exp.exponent'
|
|
45
|
-
version = '29.0.
|
|
45
|
+
version = '29.0.10'
|
|
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.
|
|
91
|
+
versionName '29.0.10'
|
|
92
92
|
consumerProguardFiles("proguard-rules.pro")
|
|
93
93
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
94
94
|
|
|
@@ -5,18 +5,33 @@ onFlowStart:
|
|
|
5
5
|
---
|
|
6
6
|
# Use dev client to load a bundle from updates server
|
|
7
7
|
- evalScript:
|
|
8
|
-
script:
|
|
8
|
+
script: ${output.api.serveManifest('test-update-basic', MAESTRO_PLATFORM)}
|
|
9
9
|
label: Setup updates server to serve a basic update
|
|
10
10
|
env:
|
|
11
11
|
MAESTRO_PLATFORM: ${MAESTRO_PLATFORM}
|
|
12
12
|
- launchApp
|
|
13
|
-
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
13
|
+
- runFlow:
|
|
14
|
+
when:
|
|
15
|
+
platform: iOS
|
|
16
|
+
commands:
|
|
17
|
+
- tapOn:
|
|
18
|
+
label: Tap on "Enter URL manually"
|
|
19
|
+
text: Enter URL manually
|
|
20
|
+
- tapOn:
|
|
21
|
+
label: Tap on "Updates URL" text field
|
|
22
|
+
text: '.*http:.*'
|
|
23
|
+
below: Enter URL manually
|
|
24
|
+
- runFlow:
|
|
25
|
+
when:
|
|
26
|
+
platform: android
|
|
27
|
+
commands:
|
|
28
|
+
- tapOn:
|
|
29
|
+
label: Tap on "New development server"
|
|
30
|
+
text: New development server
|
|
31
|
+
- tapOn:
|
|
32
|
+
label: Tap on "Updates URL" text field
|
|
33
|
+
text: '.*http:.*'
|
|
34
|
+
below: New development server
|
|
20
35
|
- inputText:
|
|
21
36
|
label: Input local update server URL
|
|
22
37
|
text: "http://localhost:4747/update\n"
|
package/e2e/setup/project.ts
CHANGED
|
@@ -328,11 +328,11 @@ async function preparePackageJson(
|
|
|
328
328
|
'adb install android/app/build/outputs/apk/release/app-release.apk',
|
|
329
329
|
'maestro:android:uninstall': 'adb uninstall dev.expo.updatese2e',
|
|
330
330
|
'maestro:ios:debug:build':
|
|
331
|
-
'xcodebuild -workspace ios/updatese2e.xcworkspace -scheme updatese2e -configuration Debug -sdk iphonesimulator -arch arm64 -derivedDataPath ios/build | npx @expo/xcpretty',
|
|
331
|
+
'set -o pipefail && xcodebuild -workspace ios/updatese2e.xcworkspace -scheme updatese2e -configuration Debug -sdk iphonesimulator -arch arm64 -derivedDataPath ios/build | npx @expo/xcpretty',
|
|
332
332
|
'maestro:ios:debug:install':
|
|
333
333
|
'xcrun simctl install booted ios/build/Build/Products/Debug-iphonesimulator/updatese2e.app',
|
|
334
334
|
'maestro:ios:release:build':
|
|
335
|
-
'xcodebuild -workspace ios/updatese2e.xcworkspace -scheme updatese2e -configuration Release -sdk iphonesimulator -arch arm64 -derivedDataPath ios/build | npx @expo/xcpretty',
|
|
335
|
+
'set -o pipefail && xcodebuild -workspace ios/updatese2e.xcworkspace -scheme updatese2e -configuration Release -sdk iphonesimulator -arch arm64 -derivedDataPath ios/build | npx @expo/xcpretty',
|
|
336
336
|
'maestro:ios:release:install':
|
|
337
337
|
'xcrun simctl install booted ios/build/Build/Products/Release-iphonesimulator/updatese2e.app',
|
|
338
338
|
'maestro:ios:uninstall': 'xcrun simctl uninstall booted dev.expo.updatese2e',
|
|
@@ -340,7 +340,7 @@ async function preparePackageJson(
|
|
|
340
340
|
'eas-build-on-success': './eas-hooks/eas-build-on-success.sh',
|
|
341
341
|
'check-android-emulator': 'npx ts-node ./scripts/check-android-emulator.ts',
|
|
342
342
|
'tvos:build':
|
|
343
|
-
'xcodebuild -workspace ios/updatese2e.xcworkspace -scheme updatese2e -configuration Debug -sdk appletvsimulator -arch arm64 -derivedDataPath ios/build | npx @expo/xcpretty',
|
|
343
|
+
'set -o pipefail && xcodebuild -workspace ios/updatese2e.xcworkspace -scheme updatese2e -configuration Debug -sdk appletvsimulator -arch arm64 -derivedDataPath ios/build | npx @expo/xcpretty',
|
|
344
344
|
postinstall: 'patch-package',
|
|
345
345
|
'start:dev-client':
|
|
346
346
|
'npx expo start --private-key-path ./keys/private-key.pem > /dev/null 2>&1 &',
|
|
@@ -397,8 +397,8 @@ async function preparePackageJson(
|
|
|
397
397
|
...packageJson,
|
|
398
398
|
dependencies: {
|
|
399
399
|
...packageJson.dependencies,
|
|
400
|
-
'react-native': 'npm:react-native-tvos@0.81.
|
|
401
|
-
'@react-native-tvos/config-tv': '^0.1.
|
|
400
|
+
'react-native': 'npm:react-native-tvos@0.81.4-0',
|
|
401
|
+
'@react-native-tvos/config-tv': '^0.1.4',
|
|
402
402
|
},
|
|
403
403
|
expo: {
|
|
404
404
|
install: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-updates",
|
|
3
|
-
"version": "29.0.
|
|
3
|
+
"version": "29.0.10",
|
|
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.5",
|
|
42
|
-
"@expo/plist": "^0.4.
|
|
42
|
+
"@expo/plist": "^0.4.7",
|
|
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": "~1.0.
|
|
48
|
-
"expo-manifests": "~1.0.
|
|
47
|
+
"expo-eas-client": "~1.0.7",
|
|
48
|
+
"expo-manifests": "~1.0.8",
|
|
49
49
|
"expo-structured-headers": "~5.0.0",
|
|
50
50
|
"expo-updates-interface": "~2.0.0",
|
|
51
51
|
"getenv": "^2.0.0",
|
|
@@ -73,5 +73,5 @@
|
|
|
73
73
|
"react": "*",
|
|
74
74
|
"react-native": "*"
|
|
75
75
|
},
|
|
76
|
-
"gitHead": "
|
|
76
|
+
"gitHead": "088e79428be97cf3ee11fc93e0e5a1fc1c8bea1e"
|
|
77
77
|
}
|