expo-modules-core 56.0.13 → 56.0.14

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
+ ## 56.0.14 — 2026-05-29
14
+
15
+ _This version does not introduce any user-facing changes._
16
+
13
17
  ## 56.0.13 — 2026-05-26
14
18
 
15
19
  ### 🎉 New features
@@ -27,7 +27,7 @@ if (shouldIncludeCompose) {
27
27
  }
28
28
 
29
29
  group = 'host.exp.exponent'
30
- version = '56.0.13'
30
+ version = '56.0.14'
31
31
 
32
32
  def isExpoModulesCoreTests = {
33
33
  Gradle gradle = getGradle()
@@ -94,7 +94,7 @@ android {
94
94
  defaultConfig {
95
95
  consumerProguardFiles 'proguard-rules.pro'
96
96
  versionCode 1
97
- versionName "56.0.13"
97
+ versionName "56.0.14"
98
98
  buildConfigField "String", "EXPO_MODULES_CORE_VERSION", "\"${versionName}\""
99
99
  buildConfigField "boolean", "IS_NEW_ARCHITECTURE_ENABLED", "true"
100
100
 
@@ -291,11 +291,13 @@ def generateStubPCHTask = tasks.register("generateStubPCH") {
291
291
  def stubHeader = new File(entry.directory, "stub_pch.hxx")
292
292
  stubHeader.text = ""
293
293
 
294
+ def stubHeaderPath = stubHeader.absolutePath.replace('\\', '/')
295
+
294
296
  def cmd = entry.command
295
297
  // Replace the forced-include path: `-Xclang -include -Xclang <path>/cmake_pch.hxx`
296
- .replaceAll(/-Xclang -include -Xclang [^\s]+cmake_pch\.hxx(?=\s)/, "-Xclang -include -Xclang ${stubHeader.absolutePath}")
298
+ .replaceAll(/-Xclang -include -Xclang [^\s]+cmake_pch\.hxx(?=\s)/, java.util.regex.Matcher.quoteReplacement("-Xclang -include -Xclang ${stubHeaderPath}"))
297
299
  // Replace the source file operand: `<path>/cmake_pch.hxx.cxx`
298
- .replaceAll(/[^\s]+cmake_pch\.hxx\.cxx/, stubHeader.absolutePath)
300
+ .replaceAll(/[^\s]+cmake_pch\.hxx\.cxx/, java.util.regex.Matcher.quoteReplacement(stubHeaderPath))
299
301
 
300
302
  def process = new ProcessBuilder(cmd.split(" ").toList())
301
303
  .directory(new File(entry.directory))
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-modules-core",
3
- "version": "56.0.13",
3
+ "version": "56.0.14",
4
4
  "description": "The core of Expo Modules architecture",
5
5
  "main": "src/index.ts",
6
6
  "types": "build/index.d.ts",
@@ -66,7 +66,7 @@
66
66
  "@types/invariant": "^2.2.33",
67
67
  "expo-module-scripts": "56.0.2"
68
68
  },
69
- "gitHead": "f67a101bcbe56114e982184834b93da7bbed00af",
69
+ "gitHead": "a7adc95c1747db1e92655feba56d0e62660098db",
70
70
  "scripts": {
71
71
  "build": "expo-module build",
72
72
  "clean": "expo-module clean",