@react-native-firebase/in-app-messaging 23.8.1 → 23.8.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
@@ -3,6 +3,16 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [23.8.3](https://github.com/invertase/react-native-firebase/compare/v23.8.2...v23.8.3) (2026-01-16)
7
+
8
+ ### Bug Fixes
9
+
10
+ - **ios:** use react-native podspec module infra for deps ([c66eb63](https://github.com/invertase/react-native-firebase/commit/c66eb63f60cfbabdeb73a3bb1eff8735f11ad391))
11
+
12
+ ## [23.8.2](https://github.com/invertase/react-native-firebase/compare/v23.8.1...v23.8.2) (2026-01-14)
13
+
14
+ **Note:** Version bump only for package @react-native-firebase/in-app-messaging
15
+
6
16
  ## [23.8.1](https://github.com/invertase/react-native-firebase/compare/v23.8.0...v23.8.1) (2026-01-13)
7
17
 
8
18
  **Note:** Version bump only for package @react-native-firebase/in-app-messaging
@@ -30,10 +30,15 @@ Pod::Spec.new do |s|
30
30
  s.tvos.deployment_target = firebase_tvos_target
31
31
  s.source_files = 'ios/**/*.{h,m}'
32
32
 
33
- # React Native dependencies
34
- s.dependency 'React-Core'
35
33
  s.dependency 'RNFBApp'
36
34
 
35
+ # React Native dependencies
36
+ if defined?(install_modules_dependencies()) != nil
37
+ install_modules_dependencies(s);
38
+ else
39
+ s.dependency "React-Core"
40
+ end
41
+
37
42
  if defined?($FirebaseSDKVersion)
38
43
  Pod::UI.puts "#{s.name}: Using user specified Firebase SDK version '#{$FirebaseSDKVersion}'"
39
44
  firebase_sdk_version = $FirebaseSDKVersion
package/lib/version.js CHANGED
@@ -1,2 +1,2 @@
1
1
  // Generated by genversion.
2
- module.exports = '23.8.1';
2
+ module.exports = '23.8.3';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-native-firebase/in-app-messaging",
3
- "version": "23.8.1",
3
+ "version": "23.8.3",
4
4
  "author": "Invertase <oss@invertase.io> (http://invertase.io)",
5
5
  "description": "React Native Firebase - Firebase In-App Messaging helps you engage your app's active users by sending them targeted, contextual messages that encourage them to use key app features. React Native Firebase provides support for both native Android & iOS integration with a simple JavaScript API.",
6
6
  "main": "lib/index.js",
@@ -27,12 +27,12 @@
27
27
  "inAppMessaging"
28
28
  ],
29
29
  "peerDependencies": {
30
- "@react-native-firebase/analytics": "23.8.1",
31
- "@react-native-firebase/app": "23.8.1"
30
+ "@react-native-firebase/analytics": "23.8.3",
31
+ "@react-native-firebase/app": "23.8.3"
32
32
  },
33
33
  "publishConfig": {
34
34
  "access": "public",
35
35
  "provenance": true
36
36
  },
37
- "gitHead": "46b06d2b1100ec03c7807b4ff34b583b773a19d7"
37
+ "gitHead": "8576e18f72feed50e4e5bd2ae0d46dbfe0e9ac77"
38
38
  }