expo-updates 0.28.6 → 0.28.7
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 +6 -0
- package/android/build.gradle +2 -2
- package/e2e/tsconfig.json +1 -1
- package/ios/EXUpdates/Multipart/EXUpdatesMultipartStreamReader.h +3 -2
- package/ios/EXUpdates/Multipart/EXUpdatesMultipartStreamReader.m +2 -2
- package/ios/EXUpdates/ReactDelegateHandler/EXDeferredRCTRootView.h +1 -1
- package/ios/EXUpdates/ReactDelegateHandler/EXDeferredRCTRootView.m +1 -0
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,12 @@
|
|
|
10
10
|
|
|
11
11
|
### 💡 Others
|
|
12
12
|
|
|
13
|
+
## 0.28.7 — 2025-04-25
|
|
14
|
+
|
|
15
|
+
### 🐛 Bug fixes
|
|
16
|
+
|
|
17
|
+
- Fixed build error from **AppDelegate.swift** integration. ([#36368](https://github.com/expo/expo/pull/36368) by [@kudo](https://github.com/kudo))
|
|
18
|
+
|
|
13
19
|
## 0.28.6 — 2025-04-22
|
|
14
20
|
|
|
15
21
|
_This version does not introduce any user-facing changes._
|
package/android/build.gradle
CHANGED
|
@@ -39,7 +39,7 @@ expoModule {
|
|
|
39
39
|
}
|
|
40
40
|
|
|
41
41
|
group = 'host.exp.exponent'
|
|
42
|
-
version = '0.28.
|
|
42
|
+
version = '0.28.7'
|
|
43
43
|
|
|
44
44
|
// Utility method to derive boolean values from the environment or from Java properties,
|
|
45
45
|
// and return them as strings to be used in BuildConfig fields
|
|
@@ -85,7 +85,7 @@ android {
|
|
|
85
85
|
namespace "expo.modules.updates"
|
|
86
86
|
defaultConfig {
|
|
87
87
|
versionCode 31
|
|
88
|
-
versionName '0.28.
|
|
88
|
+
versionName '0.28.7'
|
|
89
89
|
consumerProguardFiles("proguard-rules.pro")
|
|
90
90
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
91
91
|
|
package/e2e/tsconfig.json
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
// Copyright © 2019 650 Industries. All rights reserved.
|
|
2
2
|
|
|
3
3
|
#import <Foundation/Foundation.h>
|
|
4
|
-
#import <React/RCTMultipartStreamReader.h>
|
|
5
4
|
|
|
6
5
|
NS_ASSUME_NONNULL_BEGIN
|
|
7
6
|
|
|
7
|
+
typedef void (^EXMultipartCallback)(NSDictionary * _Nullable headers, NSData * _Nullable content, BOOL done);
|
|
8
|
+
|
|
8
9
|
/**
|
|
9
10
|
* Fork of {@link RCTMultipartStreamReader} that doesn't necessarily
|
|
10
11
|
* expect a preamble (first boundary is not necessarily preceded by CRLF).
|
|
@@ -12,7 +13,7 @@ NS_ASSUME_NONNULL_BEGIN
|
|
|
12
13
|
@interface EXUpdatesMultipartStreamReader : NSObject
|
|
13
14
|
|
|
14
15
|
- (instancetype)initWithInputStream:(NSInputStream *)stream boundary:(NSString *)boundary;
|
|
15
|
-
- (BOOL)readAllPartsWithCompletionCallback:(
|
|
16
|
+
- (BOOL)readAllPartsWithCompletionCallback:(EXMultipartCallback)callback;
|
|
16
17
|
|
|
17
18
|
@end
|
|
18
19
|
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
return headers;
|
|
36
36
|
}
|
|
37
37
|
|
|
38
|
-
- (void)emitChunk:(NSData *)data headers:(NSDictionary *)headers callback:(
|
|
38
|
+
- (void)emitChunk:(NSData *)data headers:(NSDictionary *)headers callback:(EXMultipartCallback)callback done:(BOOL)done
|
|
39
39
|
{
|
|
40
40
|
NSData *marker = [CRLF CRLF dataUsingEncoding:NSUTF8StringEncoding];
|
|
41
41
|
NSRange range = [data rangeOfData:marker options:0 range:NSMakeRange(0, data.length)];
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
}
|
|
55
55
|
}
|
|
56
56
|
|
|
57
|
-
- (BOOL)readAllPartsWithCompletionCallback:(
|
|
57
|
+
- (BOOL)readAllPartsWithCompletionCallback:(EXMultipartCallback)callback
|
|
58
58
|
{
|
|
59
59
|
NSInteger chunkStart = 0;
|
|
60
60
|
NSInteger bytesSeen = 0;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-updates",
|
|
3
|
-
"version": "0.28.
|
|
3
|
+
"version": "0.28.7",
|
|
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",
|
|
@@ -40,13 +40,13 @@
|
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
42
|
"@expo/code-signing-certificates": "0.0.5",
|
|
43
|
-
"@expo/config": "~11.0.
|
|
44
|
-
"@expo/config-plugins": "~9.1.
|
|
43
|
+
"@expo/config": "~11.0.5",
|
|
44
|
+
"@expo/config-plugins": "~9.1.6",
|
|
45
45
|
"@expo/spawn-async": "^1.7.2",
|
|
46
46
|
"arg": "4.1.0",
|
|
47
47
|
"chalk": "^4.1.2",
|
|
48
|
-
"expo-eas-client": "~0.14.
|
|
49
|
-
"expo-manifests": "~0.16.
|
|
48
|
+
"expo-eas-client": "~0.14.2",
|
|
49
|
+
"expo-manifests": "~0.16.3",
|
|
50
50
|
"expo-structured-headers": "~4.1.0",
|
|
51
51
|
"expo-updates-interface": "~1.1.0",
|
|
52
52
|
"glob": "^10.4.2",
|
|
@@ -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.1",
|
|
63
|
-
"expo-module-scripts": "^4.1.
|
|
63
|
+
"expo-module-scripts": "^4.1.5",
|
|
64
64
|
"express": "^4.21.1",
|
|
65
65
|
"form-data": "^4.0.0",
|
|
66
66
|
"js-yaml": "^4.1.0",
|
|
@@ -72,5 +72,5 @@
|
|
|
72
72
|
"expo": "*",
|
|
73
73
|
"react": "*"
|
|
74
74
|
},
|
|
75
|
-
"gitHead": "
|
|
75
|
+
"gitHead": "4e542b7b761cfea341d554dd7958103aff5f68c6"
|
|
76
76
|
}
|