@react-native-firebase/app 18.8.0 → 19.0.0
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +18 -0
- package/RNFBApp.podspec +1 -1
- package/android/src/reactnative/java/io/invertase/firebase/app/ReactNativeFirebaseVersion.java +1 -1
- package/firebase-schema.json +12 -0
- package/ios/RNFBApp/RNFBVersion.m +1 -1
- package/ios_config.sh +36 -0
- package/lib/version.js +1 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
@@ -3,6 +3,24 @@
|
|
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
|
+
## [19.0.0](https://github.com/invertase/react-native-firebase/compare/v18.9.0...v19.0.0) (2024-02-26)
|
7
|
+
|
8
|
+
### ⚠ BREAKING CHANGES
|
9
|
+
|
10
|
+
- **app, sdks:** firebase-ios-sdk 10.21.0 requires cocoapods 1.12+
|
11
|
+
in order to support the new Apple-mandated privacy manifests. Please
|
12
|
+
ensure you are using verson 1.12 or greater of cocoapods
|
13
|
+
|
14
|
+
### Bug Fixes
|
15
|
+
|
16
|
+
- **app, sdks:** SDK ios 10.21.0 / android / 32.7.2 ([9dc48be](https://github.com/invertase/react-native-firebase/commit/9dc48be52603c71b134dadca16502e8557aca95b))
|
17
|
+
|
18
|
+
## [18.9.0](https://github.com/invertase/react-native-firebase/compare/v18.8.0...v18.9.0) (2024-02-21)
|
19
|
+
|
20
|
+
### Features
|
21
|
+
|
22
|
+
- **analytics:** add setConsent implementation ([#7629](https://github.com/invertase/react-native-firebase/issues/7629)) ([7816985](https://github.com/invertase/react-native-firebase/commit/78169854f16a2715f5d2657ab08f54d5a4b05281))
|
23
|
+
|
6
24
|
## [18.8.0](https://github.com/invertase/react-native-firebase/compare/v18.7.3...v18.8.0) (2024-01-25)
|
7
25
|
|
8
26
|
### Features
|
package/RNFBApp.podspec
CHANGED
@@ -19,7 +19,7 @@ Pod::Spec.new do |s|
|
|
19
19
|
s.social_media_url = 'http://twitter.com/invertaseio'
|
20
20
|
s.ios.deployment_target = firebase_ios_target
|
21
21
|
s.macos.deployment_target = firebase_macos_target
|
22
|
-
s.cocoapods_version = '>= 1.
|
22
|
+
s.cocoapods_version = '>= 1.12.0'
|
23
23
|
s.source_files = "ios/**/*.{h,m}"
|
24
24
|
|
25
25
|
# React Native dependencies
|
package/firebase-schema.json
CHANGED
@@ -33,6 +33,18 @@
|
|
33
33
|
"description": "For your convenience, on iOS the SDK automatically registers your app with Apple for ad network attribution with SKAdNetwork.\nDefaults to true, include this key as false to disable.",
|
34
34
|
"type": "boolean"
|
35
35
|
},
|
36
|
+
"analytics_default_allow_analytics_storage": {
|
37
|
+
"description": "Enables storage (such as app identifiers) related to analytics, e.g. visit duration.",
|
38
|
+
"type": "boolean"
|
39
|
+
},
|
40
|
+
"analytics_default_allow_ad_storage": {
|
41
|
+
"description": "Enables storage (such as device identifiers) related to advertising.",
|
42
|
+
"type": "boolean"
|
43
|
+
},
|
44
|
+
"analytics_default_allow_ad_user_data": {
|
45
|
+
"description": "Sets consent for sending user data to Google for advertising purposes.",
|
46
|
+
"type": "boolean"
|
47
|
+
},
|
36
48
|
"analytics_default_allow_ad_personalization_signals": {
|
37
49
|
"description": "Configure whether a user's Analytics data may be used for personalized advertising in other products.\n If set, may be overridden at runtime by calling setUserProperty on the key 'allow_personalized_ads'",
|
38
50
|
"type": "boolean"
|
package/ios_config.sh
CHANGED
@@ -14,6 +14,18 @@
|
|
14
14
|
# See the License for the specific language governing permissions and
|
15
15
|
# limitations under the License.
|
16
16
|
#
|
17
|
+
|
18
|
+
##########################################################################
|
19
|
+
##########################################################################
|
20
|
+
#
|
21
|
+
# NOTE THAT IF YOU CHANGE THIS FILE YOU MUST RUN pod install AFTERWARDS
|
22
|
+
#
|
23
|
+
# This file is installed as an Xcode build script in the project file
|
24
|
+
# by cocoapods, and you will not see your changes until you pod install
|
25
|
+
#
|
26
|
+
##########################################################################
|
27
|
+
##########################################################################
|
28
|
+
|
17
29
|
set -e
|
18
30
|
|
19
31
|
_MAX_LOOKUPS=2;
|
@@ -119,6 +131,30 @@ if [[ ${_SEARCH_RESULT} ]]; then
|
|
119
131
|
_PLIST_ENTRY_VALUES+=("$(jsonBoolToYesNo "$_ANALYTICS_IDFV_COLLECTION")")
|
120
132
|
fi
|
121
133
|
|
134
|
+
# config.analytics_default_allow_analytics_storage
|
135
|
+
_ANALYTICS_STORAGE=$(getFirebaseJsonKeyValue "$_JSON_OUTPUT_RAW" "analytics_default_allow_analytics_storage")
|
136
|
+
if [[ $_ANALYTICS_STORAGE ]]; then
|
137
|
+
_PLIST_ENTRY_KEYS+=("GOOGLE_ANALYTICS_DEFAULT_ALLOW_ANALYTICS_STORAGE")
|
138
|
+
_PLIST_ENTRY_TYPES+=("bool")
|
139
|
+
_PLIST_ENTRY_VALUES+=("$(jsonBoolToYesNo "$_ANALYTICS_STORAGE")")
|
140
|
+
fi
|
141
|
+
|
142
|
+
# config.analytics_default_allow_ad_storage
|
143
|
+
_ANALYTICS_AD_STORAGE=$(getFirebaseJsonKeyValue "$_JSON_OUTPUT_RAW" "analytics_default_allow_ad_storage")
|
144
|
+
if [[ $_ANALYTICS_AD_STORAGE ]]; then
|
145
|
+
_PLIST_ENTRY_KEYS+=("GOOGLE_ANALYTICS_DEFAULT_ALLOW_AD_STORAGE")
|
146
|
+
_PLIST_ENTRY_TYPES+=("bool")
|
147
|
+
_PLIST_ENTRY_VALUES+=("$(jsonBoolToYesNo "$_ANALYTICS_AD_STORAGE")")
|
148
|
+
fi
|
149
|
+
|
150
|
+
# config.analytics_default_allow_ad_user_data
|
151
|
+
_ANALYTICS_AD_USER_DATA=$(getFirebaseJsonKeyValue "$_JSON_OUTPUT_RAW" "analytics_default_allow_ad_user_data")
|
152
|
+
if [[ $_ANALYTICS_AD_USER_DATA ]]; then
|
153
|
+
_PLIST_ENTRY_KEYS+=("GOOGLE_ANALYTICS_DEFAULT_ALLOW_AD_USER_DATA")
|
154
|
+
_PLIST_ENTRY_TYPES+=("bool")
|
155
|
+
_PLIST_ENTRY_VALUES+=("$(jsonBoolToYesNo "$_ANALYTICS_AD_USER_DATA")")
|
156
|
+
fi
|
157
|
+
|
122
158
|
# config.analytics_default_allow_ad_personalization_signals
|
123
159
|
_ANALYTICS_PERSONALIZATION=$(getFirebaseJsonKeyValue "$_JSON_OUTPUT_RAW" "analytics_default_allow_ad_personalization_signals")
|
124
160
|
if [[ $_ANALYTICS_PERSONALIZATION ]]; then
|
package/lib/version.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1
1
|
// Generated by genversion.
|
2
|
-
module.exports = '
|
2
|
+
module.exports = '19.0.0';
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@react-native-firebase/app",
|
3
|
-
"version": "
|
3
|
+
"version": "19.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",
|
@@ -73,7 +73,7 @@
|
|
73
73
|
},
|
74
74
|
"sdkVersions": {
|
75
75
|
"ios": {
|
76
|
-
"firebase": "10.
|
76
|
+
"firebase": "10.21.0",
|
77
77
|
"iosTarget": "11.0",
|
78
78
|
"macosTarget": "10.13"
|
79
79
|
},
|
@@ -81,12 +81,12 @@
|
|
81
81
|
"minSdk": 19,
|
82
82
|
"targetSdk": 33,
|
83
83
|
"compileSdk": 33,
|
84
|
-
"firebase": "32.7.
|
84
|
+
"firebase": "32.7.2",
|
85
85
|
"firebaseCrashlyticsGradle": "2.9.9",
|
86
86
|
"firebasePerfGradle": "1.4.2",
|
87
|
-
"gmsGoogleServicesGradle": "4.4.
|
87
|
+
"gmsGoogleServicesGradle": "4.4.1",
|
88
88
|
"playServicesAuth": "20.7.0"
|
89
89
|
}
|
90
90
|
},
|
91
|
-
"gitHead": "
|
91
|
+
"gitHead": "53b687b7230c73248cfd92ce2b80871ca69480e8"
|
92
92
|
}
|