expo-modules-core 2.3.10 → 2.3.11

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,10 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 2.3.11 — 2025-04-28
14
+
15
+ _This version does not introduce any user-facing changes._
16
+
13
17
  ## 2.3.10 — 2025-04-28
14
18
 
15
19
  ### 🐛 Bug fixes
@@ -25,7 +25,7 @@ if (shouldIncludeCompose) {
25
25
  }
26
26
 
27
27
  group = 'host.exp.exponent'
28
- version = '2.3.10'
28
+ version = '2.3.11'
29
29
 
30
30
  def isExpoModulesCoreTests = {
31
31
  Gradle gradle = getGradle()
@@ -75,7 +75,7 @@ android {
75
75
  defaultConfig {
76
76
  consumerProguardFiles 'proguard-rules.pro'
77
77
  versionCode 1
78
- versionName "2.3.10"
78
+ versionName "2.3.11"
79
79
  buildConfigField "String", "EXPO_MODULES_CORE_VERSION", "\"${versionName}\""
80
80
  buildConfigField "boolean", "IS_NEW_ARCHITECTURE_ENABLED", isNewArchitectureEnabled.toString()
81
81
 
@@ -4,7 +4,7 @@ public protocol ReactNativeFactoryProvider: AnyObject {
4
4
  expo-modules-core doesn't include the concrete `RCTReactNativeFactory` type and let the callsite to include the type
5
5
  */
6
6
  associatedtype ReactNativeFactoryType
7
- var reactNativeFactory: ReactNativeFactoryType? { get }
7
+ var factory: ReactNativeFactoryType? { get }
8
8
 
9
9
  func recreateRootView(
10
10
  withBundleURL: URL?,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-modules-core",
3
- "version": "2.3.10",
3
+ "version": "2.3.11",
4
4
  "description": "The core of Expo Modules architecture",
5
5
  "main": "src/index.ts",
6
6
  "types": "build/index.d.ts",
@@ -44,5 +44,5 @@
44
44
  "@testing-library/react-native": "^13.1.0",
45
45
  "expo-module-scripts": "^4.1.5"
46
46
  },
47
- "gitHead": "a639a661a5329e58f916cf69b8f1a7718bbdd26e"
47
+ "gitHead": "45bd8a319fb2d6abadac8dcb0c821a55a1f0caa3"
48
48
  }