expo-modules-autolinking 3.0.18 → 3.0.19

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
+ ## 3.0.19 — 2025-10-23
14
+
15
+ _This version does not introduce any user-facing changes._
16
+
13
17
  ## 3.0.18 — 2025-10-21
14
18
 
15
19
  ### 🐛 Bug fixes
@@ -20,6 +24,7 @@
20
24
 
21
25
  ### 🐛 Bug fixes
22
26
 
27
+ - [iOS] Moved our special build phase script initialization from run_podfile_post_install_hooks -> perform_post_install_actions to fix issue with wrong UUIDs in Pods.pbproj file. ([#40572](https://github.com/expo/expo/pull/40572) by [@chrfalch](https://github.com/chrfalch))
23
28
  - fix globMatchFunctorAllAsync to check if globbed path is a file to prevent errors ([#40437](https://github.com/expo/expo/pull/40437) by [@artus9033](https://github.com/artus9033)) ([#40501](https://github.com/expo/expo/pull/40501) by [@kitten](https://github.com/kitten))
24
29
 
25
30
  ## 3.0.16 — 2025-10-20
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-modules-autolinking",
3
- "version": "3.0.18",
3
+ "version": "3.0.19",
4
4
  "description": "Scripts that autolink Expo modules.",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",
@@ -46,5 +46,5 @@
46
46
  "require-from-string": "^2.0.2",
47
47
  "resolve-from": "^5.0.0"
48
48
  },
49
- "gitHead": "931d2e741cb76062726e5a95a9ff1398bbf21242"
49
+ "gitHead": "f17f3b55004d10db40d4c5455498444ad032e173"
50
50
  }
@@ -22,15 +22,16 @@ module Pod
22
22
  class Installer
23
23
  private
24
24
 
25
- _original_run_podfile_post_install_hooks = instance_method(:run_podfile_post_install_hooks)
25
+ _original_perform_post_install_actions = instance_method(:perform_post_install_actions)
26
26
  _original_run_podfile_pre_install_hooks = instance_method(:run_podfile_pre_install_hooks)
27
27
  _script_phase_name = '[Expo Autolinking] Run Codegen with autolinking'
28
28
 
29
29
  public
30
30
 
31
- define_method(:run_podfile_post_install_hooks) do
31
+ define_method(:perform_post_install_actions) do
32
+
32
33
  # Call original implementation first
33
- _original_run_podfile_post_install_hooks.bind(self).()
34
+ _original_perform_post_install_actions.bind(self).()
34
35
 
35
36
  # Next we'll perform an Expo workaround for Codegen in React Native where it uses the wrong output path for
36
37
  # the generated files. This can be remove when the following PR is merged and released upstream: