@react-native-firebase/app 14.3.1 → 14.3.2
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 +7 -0
- package/android/src/reactnative/java/io/invertase/firebase/app/ReactNativeFirebaseVersion.java +1 -1
- package/ios/RNFBApp/RNFBPreferences.h +2 -2
- package/ios/RNFBApp/RNFBPreferences.m +3 -3
- package/ios/RNFBApp/RNFBVersion.m +1 -1
- package/lib/version.js +1 -1
- package/package.json +5 -5
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
|
+
## [14.3.2](https://github.com/invertase/react-native-firebase/compare/v14.3.1...v14.3.2) (2022-02-10)
|
7
|
+
|
8
|
+
### Bug Fixes
|
9
|
+
|
10
|
+
- **app, ios:** use NSInteger not NSInteger\* for prefs ([0148901](https://github.com/invertase/react-native-firebase/commit/01489010c920fc8e367a04f9decb8a8c94c5d8c1))
|
11
|
+
- **ios, sdk:** bump to firebase-ios-sdk 8.12.1 ([da6cf01](https://github.com/invertase/react-native-firebase/commit/da6cf013815c5f8f43e4c03e721f3c270a5834e2))
|
12
|
+
|
6
13
|
## [14.3.1](https://github.com/invertase/react-native-firebase/compare/v14.3.0...v14.3.1) (2022-02-07)
|
7
14
|
|
8
15
|
### Bug Fixes
|
@@ -25,13 +25,13 @@
|
|
25
25
|
|
26
26
|
- (void)setBooleanValue:(NSString *)key boolValue:(BOOL)boolValue;
|
27
27
|
|
28
|
-
- (void)setIntegerValue:(NSString *)key integerValue:(NSInteger
|
28
|
+
- (void)setIntegerValue:(NSString *)key integerValue:(NSInteger)integerValue;
|
29
29
|
|
30
30
|
- (void)setStringValue:(NSString *)key stringValue:(NSString *)stringValue;
|
31
31
|
|
32
32
|
- (NSString *)getStringValue:(NSString *)key defaultValue:(NSString *)defaultValue;
|
33
33
|
|
34
|
-
- (NSInteger
|
34
|
+
- (NSInteger)getIntegerValue:(NSString *)key defaultValue:(NSInteger)defaultValue;
|
35
35
|
|
36
36
|
- (NSDictionary *)getAll;
|
37
37
|
|
@@ -55,14 +55,14 @@ static RNFBPreferences *sharedInstance;
|
|
55
55
|
[_userDefaults synchronize];
|
56
56
|
}
|
57
57
|
|
58
|
-
- (void)setIntegerValue:(NSString *)key integerValue:(NSInteger
|
58
|
+
- (void)setIntegerValue:(NSString *)key integerValue:(NSInteger)integerValue {
|
59
59
|
[_userDefaults setInteger:(NSInteger)integerValue forKey:key];
|
60
60
|
[_userDefaults synchronize];
|
61
61
|
}
|
62
62
|
|
63
|
-
- (NSInteger
|
63
|
+
- (NSInteger)getIntegerValue:(NSString *)key defaultValue:(NSInteger)defaultValue {
|
64
64
|
if ([_userDefaults objectForKey:key] == nil) return defaultValue;
|
65
|
-
return
|
65
|
+
return [_userDefaults integerForKey:key];
|
66
66
|
}
|
67
67
|
|
68
68
|
- (NSString *)getStringValue:(NSString *)key defaultValue:(NSString *)defaultValue {
|
package/lib/version.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1
1
|
// generated by genversion
|
2
|
-
module.exports = '14.3.
|
2
|
+
module.exports = '14.3.2';
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@react-native-firebase/app",
|
3
|
-
"version": "14.3.
|
3
|
+
"version": "14.3.2",
|
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",
|
@@ -56,7 +56,7 @@
|
|
56
56
|
"react-native": "*"
|
57
57
|
},
|
58
58
|
"dependencies": {
|
59
|
-
"@expo/config-plugins": "^4.0.
|
59
|
+
"@expo/config-plugins": "^4.0.17",
|
60
60
|
"opencollective-postinstall": "^2.0.1",
|
61
61
|
"superstruct": "^0.6.2"
|
62
62
|
},
|
@@ -65,7 +65,7 @@
|
|
65
65
|
},
|
66
66
|
"sdkVersions": {
|
67
67
|
"ios": {
|
68
|
-
"firebase": "8.
|
68
|
+
"firebase": "8.12.1"
|
69
69
|
},
|
70
70
|
"android": {
|
71
71
|
"minSdk": 19,
|
@@ -76,8 +76,8 @@
|
|
76
76
|
"firebaseCrashlyticsGradle": "2.8.1",
|
77
77
|
"firebasePerfGradle": "1.4.1",
|
78
78
|
"gmsGoogleServicesGradle": "4.3.10",
|
79
|
-
"playServicesAuth": "20.0
|
79
|
+
"playServicesAuth": "20.1.0"
|
80
80
|
}
|
81
81
|
},
|
82
|
-
"gitHead": "
|
82
|
+
"gitHead": "861efd21f844d1ad37cdeceba31c9f48c515b8e0"
|
83
83
|
}
|