@react-native-firebase/app 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
CHANGED
@@ -3,6 +3,20 @@
|
|
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
|
+
### ⚠ BREAKING CHANGES
|
9
|
+
|
10
|
+
- fix release version change type resolution
|
11
|
+
|
12
|
+
### release
|
13
|
+
|
14
|
+
- fix release version change type resolution ([6fcb946](https://github.com/invertase/react-native-firebase/commit/6fcb946f7e7bbc3e7ad6605d48ce3d11f1184c70))
|
15
|
+
|
16
|
+
## [15.7.1](https://github.com/invertase/react-native-firebase/compare/v15.7.0...v15.7.1) (2022-10-19)
|
17
|
+
|
18
|
+
**Note:** Inadvertent breaking change. iOS minimum deploy target bumped to 11, macOS to 10.13
|
19
|
+
|
6
20
|
# [15.7.0](https://github.com/invertase/react-native-firebase/compare/v15.6.0...v15.7.0) (2022-10-01)
|
7
21
|
|
8
22
|
**Note:** Version bump only for package @react-native-firebase/app
|
package/RNFBApp.podspec
CHANGED
@@ -2,6 +2,8 @@ require 'json'
|
|
2
2
|
require './firebase_json'
|
3
3
|
package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
|
4
4
|
firebase_sdk_version = package['sdkVersions']['ios']['firebase']
|
5
|
+
firebase_ios_target = package['sdkVersions']['ios']['iosTarget']
|
6
|
+
firebase_macos_target = package['sdkVersions']['ios']['macosTarget']
|
5
7
|
|
6
8
|
Pod::Spec.new do |s|
|
7
9
|
s.name = "RNFBApp"
|
@@ -15,7 +17,8 @@ Pod::Spec.new do |s|
|
|
15
17
|
s.authors = "Invertase Limited"
|
16
18
|
s.source = { :git => "https://github.com/invertase/react-native-firebase.git", :tag => "v#{s.version}" }
|
17
19
|
s.social_media_url = 'http://twitter.com/invertaseio'
|
18
|
-
s.ios.deployment_target =
|
20
|
+
s.ios.deployment_target = firebase_ios_target
|
21
|
+
s.macos.deployment_target = firebase_macos_target
|
19
22
|
s.cocoapods_version = '>= 1.10.2'
|
20
23
|
s.source_files = "ios/**/*.{h,m}"
|
21
24
|
|
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/app",
|
3
|
-
"version": "
|
3
|
+
"version": "16.0.0",
|
4
4
|
"author": "Invertase <oss@invertase.io> (http://invertase.io)",
|
5
5
|
"description": "A well tested, feature rich Firebase implementation for React Native, supporting iOS & Android. Individual module support for Admob, Analytics, Auth, Crash Reporting, Cloud Firestore, Database, Dynamic Links, Functions, Messaging (FCM), Remote Config, Storage and more.",
|
6
6
|
"main": "lib/index.js",
|
@@ -65,18 +65,20 @@
|
|
65
65
|
},
|
66
66
|
"sdkVersions": {
|
67
67
|
"ios": {
|
68
|
-
"firebase": "
|
68
|
+
"firebase": "10.0.0",
|
69
|
+
"iosTarget": "11.0",
|
70
|
+
"macosTarget": "10.13"
|
69
71
|
},
|
70
72
|
"android": {
|
71
73
|
"minSdk": 19,
|
72
74
|
"targetSdk": 33,
|
73
75
|
"compileSdk": 33,
|
74
|
-
"firebase": "
|
76
|
+
"firebase": "31.0.0",
|
75
77
|
"firebaseCrashlyticsGradle": "2.9.2",
|
76
|
-
"firebasePerfGradle": "1.4.
|
78
|
+
"firebasePerfGradle": "1.4.2",
|
77
79
|
"gmsGoogleServicesGradle": "4.3.14",
|
78
80
|
"playServicesAuth": "20.3.0"
|
79
81
|
}
|
80
82
|
},
|
81
|
-
"gitHead": "
|
83
|
+
"gitHead": "fe2bebee106dc178b0835f7097c2d05b30223b2f"
|
82
84
|
}
|