expo-modules-core 55.0.20 → 55.0.22
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 +12 -0
- package/ExpoModulesCore.podspec +9 -2
- package/android/build.gradle +2 -2
- package/ios/Utilities/ConstantsProvider.swift +9 -6
- package/package.json +9 -3
- package/prebuilds/output/debug/xcframeworks/ExpoModulesCore.tar.gz +0 -0
- package/prebuilds/output/release/xcframeworks/ExpoModulesCore.tar.gz +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,16 @@
|
|
|
10
10
|
|
|
11
11
|
### 💡 Others
|
|
12
12
|
|
|
13
|
+
## 55.0.22 — 2026-04-09
|
|
14
|
+
|
|
15
|
+
### 🐛 Bug fixes
|
|
16
|
+
|
|
17
|
+
- [iOS] Resolve `react-native-worklets` from existing podspec, falling back to peer resolution ([#44232](https://github.com/expo/expo/pull/44232) by [@kitten](https://github.com/kitten))
|
|
18
|
+
|
|
19
|
+
## 55.0.21 — 2026-04-07
|
|
20
|
+
|
|
21
|
+
_This version does not introduce any user-facing changes._
|
|
22
|
+
|
|
13
23
|
## 55.0.20 — 2026-04-02
|
|
14
24
|
|
|
15
25
|
_This version does not introduce any user-facing changes._
|
|
@@ -18,6 +28,8 @@ _This version does not introduce any user-facing changes._
|
|
|
18
28
|
|
|
19
29
|
### 🐛 Bug fixes
|
|
20
30
|
|
|
31
|
+
- [iOS] Fixed looking up the `EXConstants.bundle` from the main bundle to allow running with precompiled XCFrameworks. ([#44551](https://github.com/expo/expo/pull/44551) by [@chrfalch](https://github.com/chrfalch))
|
|
32
|
+
- [iOS] Fixed Constants.expoConfig returning null due to optional value wrapping in ConstantsProvider. ([#44550](https://github.com/expo/expo/pull/44550) by [@chrfalch](https://github.com/chrfalch))
|
|
21
33
|
- [iOS] Fixed view lookup in bridgeless mode by using `ExpoHostWrapper` instead of `reactBridge.uiManager`. ([#44375](https://github.com/expo/expo/pull/44375) by [@vonovak](https://github.com/vonovak))
|
|
22
34
|
|
|
23
35
|
## 55.0.18 — 2026-03-27
|
package/ExpoModulesCore.podspec
CHANGED
|
@@ -108,9 +108,16 @@ Pod::Spec.new do |s|
|
|
|
108
108
|
])
|
|
109
109
|
|
|
110
110
|
if shouldEnableWorkletsIntegration
|
|
111
|
+
rn_worklets_dep = Pod::Config.instance.podfile.dependencies.find { |dep| dep.name == 'RNWorklets' }
|
|
112
|
+
rn_worklets_path = rn_worklets_dep&.external_source&.dig(:path)
|
|
113
|
+
react_native_worklets_dir_absolute = if rn_worklets_path
|
|
114
|
+
File.expand_path(rn_worklets_path, Pod::Config.instance.installation_root.to_s)
|
|
115
|
+
else
|
|
116
|
+
project_root = ENV['PROJECT_ROOT'] || Pod::Config.instance.installation_root.to_s
|
|
117
|
+
File.dirname(`node --print "require.resolve('react-native-worklets/package.json', { paths: ['#{__dir__}', '#{project_root}'] })"`)
|
|
118
|
+
end
|
|
119
|
+
|
|
111
120
|
pods_root = Pod::Config.instance.project_pods_root
|
|
112
|
-
react_native_worklets_node_modules_dir = File.join(File.dirname(`cd "#{Pod::Config.instance.installation_root.to_s}" && node --print "require.resolve('react-native-worklets/package.json')"`), '..')
|
|
113
|
-
react_native_worklets_dir_absolute = File.join(react_native_worklets_node_modules_dir, 'react-native-worklets')
|
|
114
121
|
workletsPath = Pathname.new(react_native_worklets_dir_absolute).relative_path_from(pods_root).to_s
|
|
115
122
|
|
|
116
123
|
header_search_paths.concat([
|
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.22'
|
|
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.22"
|
|
100
100
|
buildConfigField "String", "EXPO_MODULES_CORE_VERSION", "\"${versionName}\""
|
|
101
101
|
buildConfigField "boolean", "IS_NEW_ARCHITECTURE_ENABLED", "true"
|
|
102
102
|
|
|
@@ -18,7 +18,7 @@ internal final class ConstantsProvider: EXConstantsInterface {
|
|
|
18
18
|
let isDebugXcodeScheme = false
|
|
19
19
|
#endif
|
|
20
20
|
|
|
21
|
-
|
|
21
|
+
var result: [AnyHashable: Any] = [
|
|
22
22
|
"sessionId": UUID().uuidString,
|
|
23
23
|
"executionEnvironment": "bare",
|
|
24
24
|
"statusBarHeight": statusBarHeight,
|
|
@@ -26,13 +26,18 @@ internal final class ConstantsProvider: EXConstantsInterface {
|
|
|
26
26
|
"systemFonts": systemFonts,
|
|
27
27
|
"debugMode": isDebugXcodeScheme,
|
|
28
28
|
"isHeadless": false,
|
|
29
|
-
"manifest": getManifest(), // Deprecated, but still used internally.
|
|
30
29
|
"platform": [
|
|
31
30
|
"ios": [
|
|
32
|
-
"buildNumber": getBuildVersion()
|
|
31
|
+
"buildNumber": getBuildVersion() ?? ""
|
|
33
32
|
]
|
|
34
33
|
]
|
|
35
34
|
]
|
|
35
|
+
// Deprecated, but still used internally. We need to check if the manifest is set, otherwise it will result in
|
|
36
|
+
// an error where the whole manifest is null since we cannot wrap an Optional null in JS correctly.
|
|
37
|
+
if let manifest = getManifest() {
|
|
38
|
+
result["manifest"] = manifest
|
|
39
|
+
}
|
|
40
|
+
return result
|
|
36
41
|
}
|
|
37
42
|
}
|
|
38
43
|
|
|
@@ -83,9 +88,7 @@ private func getDeviceName() -> String {
|
|
|
83
88
|
}
|
|
84
89
|
|
|
85
90
|
private func getManifest() -> [String: Any]? {
|
|
86
|
-
let
|
|
87
|
-
|
|
88
|
-
guard let bundleUrl = frameworkBundle.resourceURL?.appendingPathComponent("EXConstants.bundle"),
|
|
91
|
+
guard let bundleUrl = Bundle.main.resourceURL?.appendingPathComponent("EXConstants.bundle"),
|
|
89
92
|
let bundle = Bundle(url: bundleUrl),
|
|
90
93
|
let url = bundle.url(forResource: "app", withExtension: "config") else {
|
|
91
94
|
log.error("Unable to find the embedded app config")
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-modules-core",
|
|
3
|
-
"version": "55.0.
|
|
3
|
+
"version": "55.0.22",
|
|
4
4
|
"description": "The core of Expo Modules architecture",
|
|
5
5
|
"main": "src/index.ts",
|
|
6
6
|
"types": "build/index.d.ts",
|
|
@@ -60,11 +60,17 @@
|
|
|
60
60
|
},
|
|
61
61
|
"peerDependencies": {
|
|
62
62
|
"react": "*",
|
|
63
|
-
"react-native": "*"
|
|
63
|
+
"react-native": "*",
|
|
64
|
+
"react-native-worklets": "^0.7.4 || ^0.8.0"
|
|
65
|
+
},
|
|
66
|
+
"peerDependenciesMeta": {
|
|
67
|
+
"react-native-worklets": {
|
|
68
|
+
"optional": true
|
|
69
|
+
}
|
|
64
70
|
},
|
|
65
71
|
"devDependencies": {
|
|
66
72
|
"@testing-library/react-native": "^13.3.0",
|
|
67
73
|
"expo-module-scripts": "^55.0.2"
|
|
68
74
|
},
|
|
69
|
-
"gitHead": "
|
|
75
|
+
"gitHead": "b0ada30fd6a819c5f98a23d99b1b89a2ed68743d"
|
|
70
76
|
}
|
|
Binary file
|
|
Binary file
|