expo-modules-core 55.0.24 → 55.0.26
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 +10 -0
- package/android/build.gradle +2 -2
- package/android/src/main/cpp/worklets/WorkletJSCallInvoker.cpp +1 -4
- package/ios/Worklets/WorkletExecutor.mm +1 -1
- package/ios/Worklets/WorkletJSCallInvoker.cpp +1 -4
- package/package.json +2 -2
- package/prebuilds/output/debug/xcframeworks/ExpoModulesCore.tar.gz +0 -0
- package/prebuilds/output/debug/xcframeworks/ExpoModulesWorklets.tar.gz +0 -0
- package/prebuilds/output/release/xcframeworks/ExpoModulesCore.tar.gz +0 -0
- package/prebuilds/output/release/xcframeworks/ExpoModulesWorklets.tar.gz +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,16 @@
|
|
|
10
10
|
|
|
11
11
|
### 💡 Others
|
|
12
12
|
|
|
13
|
+
## 55.0.26 — 2026-08-31
|
|
14
|
+
|
|
15
|
+
### 💡 Others
|
|
16
|
+
|
|
17
|
+
- Migrated from deprecated react-native-worklets WorkletRuntime API `executeSync` to up-to-date `runSync`. `runSync` is available since 0.7.0. ([#48691](https://github.com/expo/expo/pull/48691) by [@tjzel](https://github.com/tjzel))
|
|
18
|
+
|
|
19
|
+
## 55.0.25 — 2026-05-05
|
|
20
|
+
|
|
21
|
+
_This version does not introduce any user-facing changes._
|
|
22
|
+
|
|
13
23
|
## 55.0.24 — 2026-05-01
|
|
14
24
|
|
|
15
25
|
### 🐛 Bug fixes
|
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.26'
|
|
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.26"
|
|
100
100
|
buildConfigField "String", "EXPO_MODULES_CORE_VERSION", "\"${versionName}\""
|
|
101
101
|
buildConfigField "boolean", "IS_NEW_ARCHITECTURE_ENABLED", "true"
|
|
102
102
|
|
|
@@ -82,7 +82,7 @@
|
|
|
82
82
|
return;
|
|
83
83
|
}
|
|
84
84
|
|
|
85
|
-
workletRuntime->
|
|
85
|
+
workletRuntime->runSync([worklet, arguments](jsi::Runtime &rt) -> jsi::Value {
|
|
86
86
|
std::vector<jsi::Value> convertedArgs = expo::convertNSArrayToStdVector(rt, arguments);
|
|
87
87
|
|
|
88
88
|
auto func = worklet->toJSValue(rt).asObject(rt).asFunction(rt);
|
|
@@ -25,10 +25,7 @@ void WorkletJSCallInvoker::invokeSync(react::CallFunc &&func) {
|
|
|
25
25
|
return;
|
|
26
26
|
}
|
|
27
27
|
|
|
28
|
-
workletRuntime->
|
|
29
|
-
func(rt);
|
|
30
|
-
return jsi::Value::undefined();
|
|
31
|
-
});
|
|
28
|
+
workletRuntime->runSync(func);
|
|
32
29
|
}
|
|
33
30
|
|
|
34
31
|
} // namespace expo
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-modules-core",
|
|
3
|
-
"version": "55.0.
|
|
3
|
+
"version": "55.0.26",
|
|
4
4
|
"description": "The core of Expo Modules architecture",
|
|
5
5
|
"main": "src/index.ts",
|
|
6
6
|
"types": "build/index.d.ts",
|
|
@@ -72,5 +72,5 @@
|
|
|
72
72
|
"@testing-library/react-native": "^13.3.0",
|
|
73
73
|
"expo-module-scripts": "^55.0.2"
|
|
74
74
|
},
|
|
75
|
-
"gitHead": "
|
|
75
|
+
"gitHead": "30a1c5b4871a5a3f0f6545be0c2d1f67521a5e6f"
|
|
76
76
|
}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|