expo-modules-autolinking 56.0.8 → 56.0.9

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,16 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 56.0.9 — 2026-05-20
14
+
15
+ ### 🐛 Bug fixes
16
+
17
+ - Fix Hermes version resolution polarity in `precompiled_modules.rb` so external prebuilt artifacts are looked up under the V1 Hermes subfolder by default, matching `hermes-engine.podspec`. ([#46053](https://github.com/expo/expo/pull/46053) by [@chrfalch](https://github.com/chrfalch))
18
+
19
+ ### 💡 Others
20
+
21
+ - Bump to `@expo/spawn-async@^1.8.0` ([#45999](https://github.com/expo/expo/pull/45999) by [@kitten](https://github.com/kitten))
22
+
13
23
  ## 56.0.8 — 2026-05-19
14
24
 
15
25
  _This version does not introduce any user-facing changes._
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-modules-autolinking",
3
- "version": "56.0.8",
3
+ "version": "56.0.9",
4
4
  "description": "Scripts that autolink Expo modules.",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",
@@ -44,12 +44,12 @@
44
44
  "expo-module-scripts": "56.0.2"
45
45
  },
46
46
  "dependencies": {
47
- "@expo/require-utils": "^56.1.1",
48
- "@expo/spawn-async": "^1.7.2",
47
+ "@expo/require-utils": "^56.1.2",
48
+ "@expo/spawn-async": "^1.8.0",
49
49
  "chalk": "^4.1.0",
50
50
  "commander": "^7.2.0"
51
51
  },
52
- "gitHead": "290368bc41026449a05a4ebf991b85c3a2fb0e3a",
52
+ "gitHead": "c4c9867a0bcbb188e55ecaec4998e38d33108a5d",
53
53
  "scripts": {
54
54
  "build": "expo-module build",
55
55
  "clean": "expo-module clean",
@@ -1754,7 +1754,9 @@ module Expo
1754
1754
  @hermes_version ||= begin
1755
1755
  rn_path = react_native_path
1756
1756
  if rn_path
1757
- is_v1 = ENV['RCT_HERMES_V1_ENABLED'] == '1'
1757
+ # Matches hermes-engine.podspec polarity: V1 is the default, classic
1758
+ # is selected only when the consuming app explicitly sets the env var to "0".
1759
+ is_v1 = ENV['RCT_HERMES_V1_ENABLED'] != '0'
1758
1760
  props_path = File.join(rn_path, 'sdks', 'hermes-engine', 'version.properties')
1759
1761
  version = File.exist?(props_path) ?
1760
1762
  parse_version_properties(props_path)[is_v1 ? 'HERMES_V1_VERSION_NAME' : 'HERMES_VERSION_NAME'] : nil