expo-modules-core 55.0.1 → 55.0.2
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/ios/JSI/EXJSIConversions.mm +1 -6
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,12 @@
|
|
|
10
10
|
|
|
11
11
|
### 💡 Others
|
|
12
12
|
|
|
13
|
+
## 55.0.2 — 2026-01-22
|
|
14
|
+
|
|
15
|
+
### 💡 Others
|
|
16
|
+
|
|
17
|
+
- [macos] Remove react-native-macos@0.79.0 workarounds ([#42409](https://github.com/expo/expo/pull/42409) by [@gabrieldonadel](https://github.com/gabrieldonadel))
|
|
18
|
+
|
|
13
19
|
## 55.0.1 — 2026-01-22
|
|
14
20
|
|
|
15
21
|
_This version does not introduce any user-facing changes._
|
package/android/build.gradle
CHANGED
|
@@ -29,7 +29,7 @@ if (shouldIncludeCompose) {
|
|
|
29
29
|
}
|
|
30
30
|
|
|
31
31
|
group = 'host.exp.exponent'
|
|
32
|
-
version = '55.0.
|
|
32
|
+
version = '55.0.2'
|
|
33
33
|
|
|
34
34
|
def isExpoModulesCoreTests = {
|
|
35
35
|
Gradle gradle = getGradle()
|
|
@@ -96,7 +96,7 @@ android {
|
|
|
96
96
|
defaultConfig {
|
|
97
97
|
consumerProguardFiles 'proguard-rules.pro'
|
|
98
98
|
versionCode 1
|
|
99
|
-
versionName "55.0.
|
|
99
|
+
versionName "55.0.2"
|
|
100
100
|
buildConfigField "String", "EXPO_MODULES_CORE_VERSION", "\"${versionName}\""
|
|
101
101
|
buildConfigField "boolean", "IS_NEW_ARCHITECTURE_ENABLED", "true"
|
|
102
102
|
|
|
@@ -28,7 +28,6 @@ jsi::Value convertNSNumberToJSINumber(jsi::Runtime &runtime, NSNumber *value)
|
|
|
28
28
|
|
|
29
29
|
jsi::String convertNSStringToJSIString(jsi::Runtime &runtime, NSString *value)
|
|
30
30
|
{
|
|
31
|
-
#if !TARGET_OS_OSX
|
|
32
31
|
const uint8_t *utf8 = (const uint8_t *)[value UTF8String];
|
|
33
32
|
const size_t length = [value length];
|
|
34
33
|
|
|
@@ -37,10 +36,6 @@ jsi::String convertNSStringToJSIString(jsi::Runtime &runtime, NSString *value)
|
|
|
37
36
|
}
|
|
38
37
|
// Using cStringUsingEncoding should be fine as long as we provide the length.
|
|
39
38
|
return jsi::String::createFromUtf16(runtime, (const char16_t *)[value cStringUsingEncoding:NSUTF16StringEncoding], length);
|
|
40
|
-
#else
|
|
41
|
-
// TODO(@jakex7): Remove after update to react-native-macos@0.79.0
|
|
42
|
-
return jsi::String::createFromUtf8(runtime, [value UTF8String]);
|
|
43
|
-
#endif
|
|
44
39
|
}
|
|
45
40
|
|
|
46
41
|
jsi::String convertNSURLToJSIString(jsi::Runtime &runtime, NSURL *value)
|
|
@@ -228,7 +223,7 @@ id convertJSIValueToObjCObjectAsDictValue(jsi::Runtime &runtime, const jsi::Valu
|
|
|
228
223
|
}
|
|
229
224
|
return convertJSIObjectToNSDictionary(runtime, o, jsInvoker);
|
|
230
225
|
}
|
|
231
|
-
|
|
226
|
+
|
|
232
227
|
throw std::runtime_error("Unsupported jsi::jsi::Value kind");
|
|
233
228
|
}
|
|
234
229
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-modules-core",
|
|
3
|
-
"version": "55.0.
|
|
3
|
+
"version": "55.0.2",
|
|
4
4
|
"description": "The core of Expo Modules architecture",
|
|
5
5
|
"main": "src/index.ts",
|
|
6
6
|
"types": "build/index.d.ts",
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
},
|
|
65
65
|
"devDependencies": {
|
|
66
66
|
"@testing-library/react-native": "^13.2.0",
|
|
67
|
-
"expo-module-scripts": "^55.0.
|
|
67
|
+
"expo-module-scripts": "^55.0.1"
|
|
68
68
|
},
|
|
69
|
-
"gitHead": "
|
|
69
|
+
"gitHead": "9e6e4e518083f0516edf32a14a39f8afbbd049e4"
|
|
70
70
|
}
|