expo-modules-core 55.0.16 → 55.0.17

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
+ ## 55.0.17 — 2026-03-18
14
+
15
+ _This version does not introduce any user-facing changes._
16
+
13
17
  ## 55.0.16 — 2026-03-17
14
18
 
15
19
  ### 🎉 New features
@@ -29,7 +29,7 @@ if (shouldIncludeCompose) {
29
29
  }
30
30
 
31
31
  group = 'host.exp.exponent'
32
- version = '55.0.16'
32
+ version = '55.0.17'
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.16"
99
+ versionName "55.0.17"
100
100
  buildConfigField "String", "EXPO_MODULES_CORE_VERSION", "\"${versionName}\""
101
101
  buildConfigField "boolean", "IS_NEW_ARCHITECTURE_ENABLED", "true"
102
102
 
@@ -191,7 +191,7 @@ open class ExpoFabricView: ExpoFabricViewObjC, AnyExpoView {
191
191
  }
192
192
 
193
193
  internal static func inject(appContext: AppContext) {
194
- // Keep it weak so we don't leak the app context.
194
+ // Keep it weak so we don't leak the app context. We use `var` because `let` is only supported in Swift 6.0+
195
195
  weak var weakAppContext = appContext
196
196
  let appContextBlock: @convention(block) () -> AppContext? = { weakAppContext }
197
197
  let appContextBlockImp: IMP = imp_implementationWithBlock(appContextBlock)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-modules-core",
3
- "version": "55.0.16",
3
+ "version": "55.0.17",
4
4
  "description": "The core of Expo Modules architecture",
5
5
  "main": "src/index.ts",
6
6
  "types": "build/index.d.ts",
@@ -66,5 +66,5 @@
66
66
  "@testing-library/react-native": "^13.3.0",
67
67
  "expo-module-scripts": "^55.0.2"
68
68
  },
69
- "gitHead": "9260ae10a08271027d85792b7128e0d4883dca4d"
69
+ "gitHead": "31afdbe5613d666148711cb3ec58c4b617a00c14"
70
70
  }