@react-native-firebase/messaging 23.8.2 → 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,13 @@
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
+ - **expo:** export app.plugin.js entry points for typescript packages ([7ae0872](https://github.com/invertase/react-native-firebase/commit/7ae0872850358f3b29c7d232ad7039fec08f9f5c))
11
+ - **ios:** use react-native podspec module infra for deps ([c66eb63](https://github.com/invertase/react-native-firebase/commit/c66eb63f60cfbabdeb73a3bb1eff8735f11ad391))
12
+
6
13
  ## [23.8.2](https://github.com/invertase/react-native-firebase/compare/v23.8.1...v23.8.2) (2026-01-14)
7
14
 
8
15
  **Note:** Version bump only for package @react-native-firebase/messaging
@@ -27,10 +27,14 @@ Pod::Spec.new do |s|
27
27
  s.macos.deployment_target = firebase_macos_target
28
28
  s.source_files = 'ios/**/*.{h,m}'
29
29
 
30
- # React Native dependencies
31
- s.dependency 'React-Core'
32
30
  s.dependency 'RNFBApp'
33
31
 
32
+ # React Native dependencies
33
+ if defined?(install_modules_dependencies()) != nil
34
+ install_modules_dependencies(s);
35
+ else
36
+ s.dependency "React-Core"
37
+ end
34
38
 
35
39
  if defined?($FirebaseSDKVersion)
36
40
  Pod::UI.puts "#{s.name}: Using user specified Firebase SDK version '#{$FirebaseSDKVersion}'"
@@ -5,5 +5,5 @@ Object.defineProperty(exports, "__esModule", {
5
5
  });
6
6
  exports.version = void 0;
7
7
  // Generated by genversion.
8
- const version = exports.version = '23.8.2';
8
+ const version = exports.version = '23.8.3';
9
9
  //# sourceMappingURL=version.js.map
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
2
 
3
3
  // Generated by genversion.
4
- export const version = '23.8.2';
4
+ export const version = '23.8.3';
5
5
  //# sourceMappingURL=version.js.map
@@ -1,6 +1,6 @@
1
1
  import type { Messaging, Statics } from './types/messaging';
2
2
  import type { ReactNativeFirebase } from '@react-native-firebase/app';
3
- export declare const SDK_VERSION = "23.8.2";
3
+ export declare const SDK_VERSION = "23.8.3";
4
4
  type MessagingNamespace = ReactNativeFirebase.FirebaseModuleWithStaticsAndApp<Messaging, Statics> & {
5
5
  messaging: ReactNativeFirebase.FirebaseModuleWithStaticsAndApp<Messaging, Statics>;
6
6
  firebase: ReactNativeFirebase.Module;
@@ -1,2 +1,2 @@
1
- export declare const version = "23.8.2";
1
+ export declare const version = "23.8.3";
2
2
  //# sourceMappingURL=version.d.ts.map
@@ -1,6 +1,6 @@
1
1
  import type { Messaging, Statics } from './types/messaging';
2
2
  import type { ReactNativeFirebase } from '@react-native-firebase/app';
3
- export declare const SDK_VERSION = "23.8.2";
3
+ export declare const SDK_VERSION = "23.8.3";
4
4
  type MessagingNamespace = ReactNativeFirebase.FirebaseModuleWithStaticsAndApp<Messaging, Statics> & {
5
5
  messaging: ReactNativeFirebase.FirebaseModuleWithStaticsAndApp<Messaging, Statics>;
6
6
  firebase: ReactNativeFirebase.Module;
@@ -1,2 +1,2 @@
1
- export declare const version = "23.8.2";
1
+ export declare const version = "23.8.3";
2
2
  //# sourceMappingURL=version.d.ts.map
package/lib/version.ts CHANGED
@@ -1,2 +1,2 @@
1
1
  // Generated by genversion.
2
- export const version = '23.8.2';
2
+ export const version = '23.8.3';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-native-firebase/messaging",
3
- "version": "23.8.2",
3
+ "version": "23.8.3",
4
4
  "author": "Invertase <oss@invertase.io> (http://invertase.io)",
5
5
  "description": "React Native Firebase - React Native Firebase provides native integration of Firebase Cloud Messaging (FCM) for both Android & iOS. FCM is a cost free service, allowing for server-device and device-device communication. The React Native Firebase Messaging module provides a simple JavaScript API to interact with FCM.",
6
6
  "main": "./dist/commonjs/index.js",
@@ -26,7 +26,7 @@
26
26
  "messaging"
27
27
  ],
28
28
  "peerDependencies": {
29
- "@react-native-firebase/app": "23.8.2",
29
+ "@react-native-firebase/app": "23.8.3",
30
30
  "expo": ">=47.0.0"
31
31
  },
32
32
  "devDependencies": {
@@ -55,6 +55,7 @@
55
55
  "default": "./dist/commonjs/index.js"
56
56
  }
57
57
  },
58
+ "./app.plugin.js": "./app.plugin.js",
58
59
  "./package.json": "./package.json"
59
60
  },
60
61
  "react-native-builder-bob": {
@@ -85,5 +86,5 @@
85
86
  "node_modules/",
86
87
  "dist/"
87
88
  ],
88
- "gitHead": "578c1573d9bcb9a83848f34a08be40c7b5722d9b"
89
+ "gitHead": "8576e18f72feed50e4e5bd2ae0d46dbfe0e9ac77"
89
90
  }