expo-build-properties 0.12.2 → 0.12.3

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,12 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 0.12.3 — 2024-06-06
14
+
15
+ ### 🎉 New features
16
+
17
+ - `ios.privacyManifestAggregationEnabled` is now enabled by default. ([#29439](https://github.com/expo/expo/pull/29439) by [@alanjhughes](https://github.com/alanjhughes))
18
+
13
19
  ## 0.12.2 — 2024-06-05
14
20
 
15
21
  ### 🐛 Bug fixes
package/build/ios.js CHANGED
@@ -26,7 +26,7 @@ exports.withIosBuildProperties = createBuildPodfilePropsConfigPlugin([
26
26
  },
27
27
  {
28
28
  propName: 'apple.privacyManifestAggregationEnabled',
29
- propValueGetter: (config) => (config.ios?.privacyManifestAggregationEnabled ?? false).toString(),
29
+ propValueGetter: (config) => (config.ios?.privacyManifestAggregationEnabled ?? true).toString(),
30
30
  },
31
31
  ], 'withIosBuildProperties');
32
32
  const withIosDeploymentTarget = (config, props) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-build-properties",
3
- "version": "0.12.2",
3
+ "version": "0.12.3",
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",
@@ -40,5 +40,5 @@
40
40
  "peerDependencies": {
41
41
  "expo": "*"
42
42
  },
43
- "gitHead": "2da3ee1a1cfc03b58ee2988529ad941641330f99"
43
+ "gitHead": "f424c7ea50d8787fa8d3354a33fe402160b63032"
44
44
  }
package/src/ios.ts CHANGED
@@ -29,7 +29,7 @@ export const withIosBuildProperties = createBuildPodfilePropsConfigPlugin<Plugin
29
29
  {
30
30
  propName: 'apple.privacyManifestAggregationEnabled',
31
31
  propValueGetter: (config) =>
32
- (config.ios?.privacyManifestAggregationEnabled ?? false).toString(),
32
+ (config.ios?.privacyManifestAggregationEnabled ?? true).toString(),
33
33
  },
34
34
  ],
35
35
  'withIosBuildProperties'