@react-native-firebase/messaging 15.7.0 → 16.0.0
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 +8 -0
- package/RNFBMessaging.podspec +4 -1
- package/android/build.gradle +2 -0
- package/lib/version.js +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
@@ -3,6 +3,14 @@
|
|
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
|
+
## [16.0.0](https://github.com/invertase/react-native-firebase/compare/v15.7.1...v16.0.0) (2022-10-19)
|
7
|
+
|
8
|
+
**Note:** Version bump only for package @react-native-firebase/messaging
|
9
|
+
|
10
|
+
## [15.7.1](https://github.com/invertase/react-native-firebase/compare/v15.7.0...v15.7.1) (2022-10-19)
|
11
|
+
|
12
|
+
**Note:** Version bump only for package @react-native-firebase/messaging
|
13
|
+
|
6
14
|
# [15.7.0](https://github.com/invertase/react-native-firebase/compare/v15.6.0...v15.7.0) (2022-10-01)
|
7
15
|
|
8
16
|
**Note:** Version bump only for package @react-native-firebase/messaging
|
package/RNFBMessaging.podspec
CHANGED
@@ -8,6 +8,8 @@ firebase_sdk_version = appPackage['sdkVersions']['ios']['firebase']
|
|
8
8
|
if coreVersionDetected != coreVersionRequired
|
9
9
|
Pod::UI.warn "NPM package '#{package['name']}' depends on '#{appPackage['name']}' v#{coreVersionRequired} but found v#{coreVersionDetected}, this might cause build issues or runtime crashes."
|
10
10
|
end
|
11
|
+
firebase_ios_target = appPackage['sdkVersions']['ios']['iosTarget']
|
12
|
+
firebase_macos_target = appPackage['sdkVersions']['ios']['macosTarget']
|
11
13
|
|
12
14
|
Pod::Spec.new do |s|
|
13
15
|
s.name = "RNFBMessaging"
|
@@ -21,7 +23,8 @@ Pod::Spec.new do |s|
|
|
21
23
|
s.authors = "Invertase Limited"
|
22
24
|
s.source = { :git => "https://github.com/invertase/react-native-firebase.git", :tag => "v#{s.version}" }
|
23
25
|
s.social_media_url = 'http://twitter.com/invertaseio'
|
24
|
-
s.ios.deployment_target =
|
26
|
+
s.ios.deployment_target = firebase_ios_target
|
27
|
+
s.macos.deployment_target = firebase_macos_target
|
25
28
|
s.source_files = 'ios/**/*.{h,m}'
|
26
29
|
|
27
30
|
# React Native dependencies
|
package/android/build.gradle
CHANGED
@@ -116,6 +116,8 @@ dependencies {
|
|
116
116
|
api appProject
|
117
117
|
implementation platform("com.google.firebase:firebase-bom:${ReactNative.ext.getVersion("firebase", "bom")}")
|
118
118
|
implementation "com.google.firebase:firebase-messaging"
|
119
|
+
// temporary workaround: https://github.com/firebase/firebase-android-sdk/issues/4206
|
120
|
+
implementation 'com.google.firebase:firebase-iid:21.1.0'
|
119
121
|
}
|
120
122
|
|
121
123
|
ReactNative.shared.applyPackageVersion()
|
package/lib/version.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1
1
|
// Generated by genversion.
|
2
|
-
module.exports = '
|
2
|
+
module.exports = '16.0.0';
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@react-native-firebase/messaging",
|
3
|
-
"version": "
|
3
|
+
"version": "16.0.0",
|
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": "lib/index.js",
|
@@ -22,10 +22,10 @@
|
|
22
22
|
"messaging"
|
23
23
|
],
|
24
24
|
"peerDependencies": {
|
25
|
-
"@react-native-firebase/app": "
|
25
|
+
"@react-native-firebase/app": "16.0.0"
|
26
26
|
},
|
27
27
|
"publishConfig": {
|
28
28
|
"access": "public"
|
29
29
|
},
|
30
|
-
"gitHead": "
|
30
|
+
"gitHead": "fe2bebee106dc178b0835f7097c2d05b30223b2f"
|
31
31
|
}
|