expo-build-properties 56.0.13 → 56.0.15

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,18 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 56.0.15 — 2026-05-26
14
+
15
+ ### 🐛 Bug fixes
16
+
17
+ - Fix `useHermesV1` reference to document its current default of `true` (Hermes V1 is the default engine since SDK 56) and that disabling it requires `buildReactNativeFromSource`. ([#46211](https://github.com/expo/expo/pull/46211) by [@yaminyassin](https://github.com/yaminyassin))
18
+
19
+ ## 56.0.14 — 2026-05-23
20
+
21
+ ### 🐛 Bug fixes
22
+
23
+ - [iOS] Default `ios.usePrecompiledModules` to `true` so the plugin matches the Podfile default (precompiled modules enabled) instead of silently disabling them. ([#46159](https://github.com/expo/expo/pull/46159) by [@vonovak](https://github.com/vonovak))
24
+
13
25
  ## 56.0.13 — 2026-05-21
14
26
 
15
27
  _This version does not introduce any user-facing changes._
package/build/ios.js CHANGED
@@ -42,7 +42,7 @@ exports.withIosBuildProperties = createBuildPodfilePropsConfigPlugin([
42
42
  },
43
43
  {
44
44
  propName: 'EXPO_USE_PRECOMPILED_MODULES',
45
- propValueGetter: (config) => (config.ios?.usePrecompiledModules ?? false).toString(),
45
+ propValueGetter: (config) => (config.ios?.usePrecompiledModules ?? true).toString(),
46
46
  },
47
47
  ], 'withIosBuildProperties');
48
48
  /** @deprecated use built-in `ios.deploymentTarget` property instead. */
@@ -23,12 +23,15 @@ export interface SharedBuildConfigFields {
23
23
  */
24
24
  reactNativeReleaseLevel?: 'stable' | 'canary' | 'experimental';
25
25
  /**
26
- * Enable the experimental Hermes V1 engine.
26
+ * Enable Hermes V1 engine. Turning on will provide faster startup times, improved runtime
27
+ * performance, and reduced memory usage.
27
28
  *
28
- * In React Native 0.83, using Hermes V1 requires building React Native from source.
29
- * You must set `buildReactNativeFromSource` to `true` when enabling this option.
29
+ * Hermes V1 is the default JavaScript engine starting in React Native 0.84.
30
+ * Set this to `false` to use the legacy Hermes engine instead, which also
31
+ * requires setting `buildReactNativeFromSource` to `true`.
30
32
  *
31
- * @default false
33
+ * @default true
34
+ * @see [Hermes V1 as Default](https://reactnative.dev/blog/2026/02/11/react-native-0.84#hermes-v1-as-default)
32
35
  */
33
36
  useHermesV1?: boolean;
34
37
  }
@@ -372,7 +375,7 @@ export interface PluginConfigTypeIos extends SharedBuildConfigFields {
372
375
  * When enabled, sets the `EXPO_USE_PRECOMPILED_MODULES` environment variable to `1`
373
376
  * during `pod install`, which causes matching modules to be linked as vendored frameworks.
374
377
  *
375
- * @default false
378
+ * @default true
376
379
  */
377
380
  usePrecompiledModules?: boolean;
378
381
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-build-properties",
3
- "version": "56.0.13",
3
+ "version": "56.0.15",
4
4
  "description": "Config plugin to customize native build properties on prebuild",
5
5
  "main": "build/withBuildProperties.js",
6
6
  "types": "build/withBuildProperties.d.ts",
@@ -35,13 +35,13 @@
35
35
  "devDependencies": {
36
36
  "@types/node": "^22.14.0",
37
37
  "@types/semver": "^7.0.0",
38
- "expo": "56.0.3",
39
- "expo-module-scripts": "56.0.2"
38
+ "expo-module-scripts": "56.0.2",
39
+ "expo": "56.0.5"
40
40
  },
41
41
  "peerDependencies": {
42
42
  "expo": "*"
43
43
  },
44
- "gitHead": "125e8225bf36a4b9b2a159441d9ea724bcf1110f",
44
+ "gitHead": "f67a101bcbe56114e982184834b93da7bbed00af",
45
45
  "scripts": {
46
46
  "build": "expo-module build",
47
47
  "clean": "expo-module clean",
package/src/ios.ts CHANGED
@@ -47,7 +47,7 @@ export const withIosBuildProperties = createBuildPodfilePropsConfigPlugin<Plugin
47
47
  },
48
48
  {
49
49
  propName: 'EXPO_USE_PRECOMPILED_MODULES',
50
- propValueGetter: (config) => (config.ios?.usePrecompiledModules ?? false).toString(),
50
+ propValueGetter: (config) => (config.ios?.usePrecompiledModules ?? true).toString(),
51
51
  },
52
52
  ],
53
53
  'withIosBuildProperties'
@@ -53,12 +53,15 @@ export interface SharedBuildConfigFields {
53
53
  reactNativeReleaseLevel?: 'stable' | 'canary' | 'experimental';
54
54
 
55
55
  /**
56
- * Enable the experimental Hermes V1 engine.
56
+ * Enable Hermes V1 engine. Turning on will provide faster startup times, improved runtime
57
+ * performance, and reduced memory usage.
57
58
  *
58
- * In React Native 0.83, using Hermes V1 requires building React Native from source.
59
- * You must set `buildReactNativeFromSource` to `true` when enabling this option.
59
+ * Hermes V1 is the default JavaScript engine starting in React Native 0.84.
60
+ * Set this to `false` to use the legacy Hermes engine instead, which also
61
+ * requires setting `buildReactNativeFromSource` to `true`.
60
62
  *
61
- * @default false
63
+ * @default true
64
+ * @see [Hermes V1 as Default](https://reactnative.dev/blog/2026/02/11/react-native-0.84#hermes-v1-as-default)
62
65
  */
63
66
  useHermesV1?: boolean;
64
67
  }
@@ -442,7 +445,7 @@ export interface PluginConfigTypeIos extends SharedBuildConfigFields {
442
445
  * When enabled, sets the `EXPO_USE_PRECOMPILED_MODULES` environment variable to `1`
443
446
  * during `pod install`, which causes matching modules to be linked as vendored frameworks.
444
447
  *
445
- * @default false
448
+ * @default true
446
449
  */
447
450
  usePrecompiledModules?: boolean;
448
451
  }