@react-native-firebase/app 14.3.1 → 14.5.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,27 @@
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.5.0](https://github.com/invertase/react-native-firebase/compare/v14.4.0...v14.5.0) (2022-02-15)
7
+
8
+ **Note:** Version bump only for package @react-native-firebase/app
9
+
10
+ # [14.4.0](https://github.com/invertase/react-native-firebase/compare/v14.3.3...v14.4.0) (2022-02-13)
11
+
12
+ **Note:** Version bump only for package @react-native-firebase/app
13
+
14
+ ## [14.3.3](https://github.com/invertase/react-native-firebase/compare/v14.3.2...v14.3.3) (2022-02-12)
15
+
16
+ ### Bug Fixes
17
+
18
+ - **android, sdk:** bump firebase-android-sdk to 29.1.0 ([292c424](https://github.com/invertase/react-native-firebase/commit/292c4240bb6220beddbbdb0db7e6700ddd41a24f))
19
+
20
+ ## [14.3.2](https://github.com/invertase/react-native-firebase/compare/v14.3.1...v14.3.2) (2022-02-10)
21
+
22
+ ### Bug Fixes
23
+
24
+ - **app, ios:** use NSInteger not NSInteger\* for prefs ([0148901](https://github.com/invertase/react-native-firebase/commit/01489010c920fc8e367a04f9decb8a8c94c5d8c1))
25
+ - **ios, sdk:** bump to firebase-ios-sdk 8.12.1 ([da6cf01](https://github.com/invertase/react-native-firebase/commit/da6cf013815c5f8f43e4c03e721f3c270a5834e2))
26
+
6
27
  ## [14.3.1](https://github.com/invertase/react-native-firebase/compare/v14.3.0...v14.3.1) (2022-02-07)
7
28
 
8
29
  ### Bug Fixes
@@ -18,5 +18,5 @@ package io.invertase.firebase.app;
18
18
  */
19
19
  // generated file - do not modify or commit
20
20
  public class ReactNativeFirebaseVersion {
21
- public static String VERSION = "14.3.1";
21
+ public static String VERSION = "14.5.0";
22
22
  }
@@ -25,13 +25,13 @@
25
25
 
26
26
  - (void)setBooleanValue:(NSString *)key boolValue:(BOOL)boolValue;
27
27
 
28
- - (void)setIntegerValue:(NSString *)key integerValue:(NSInteger *)integerValue;
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 *)getIntegerValue:(NSString *)key defaultValue:(NSInteger *)defaultValue;
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 *)integerValue {
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 *)getIntegerValue:(NSString *)key defaultValue:(NSInteger *)defaultValue {
63
+ - (NSInteger)getIntegerValue:(NSString *)key defaultValue:(NSInteger)defaultValue {
64
64
  if ([_userDefaults objectForKey:key] == nil) return defaultValue;
65
- return (NSInteger *)[_userDefaults integerForKey:key];
65
+ return [_userDefaults integerForKey:key];
66
66
  }
67
67
 
68
68
  - (NSString *)getStringValue:(NSString *)key defaultValue:(NSString *)defaultValue {
@@ -18,4 +18,4 @@
18
18
  #import "RCTVersion.h"
19
19
 
20
20
  // generated file - do not modify or commit
21
- NSString* const RNFBVersionString = @"14.3.1";
21
+ NSString* const RNFBVersionString = @"14.5.0";
package/lib/version.js CHANGED
@@ -1,2 +1,2 @@
1
1
  // generated by genversion
2
- module.exports = '14.3.1';
2
+ module.exports = '14.5.0';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-native-firebase/app",
3
- "version": "14.3.1",
3
+ "version": "14.5.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",
@@ -56,7 +56,7 @@
56
56
  "react-native": "*"
57
57
  },
58
58
  "dependencies": {
59
- "@expo/config-plugins": "^4.0.16",
59
+ "@expo/config-plugins": "^4.0.18",
60
60
  "opencollective-postinstall": "^2.0.1",
61
61
  "superstruct": "^0.6.2"
62
62
  },
@@ -65,19 +65,19 @@
65
65
  },
66
66
  "sdkVersions": {
67
67
  "ios": {
68
- "firebase": "8.11.0"
68
+ "firebase": "8.12.1"
69
69
  },
70
70
  "android": {
71
71
  "minSdk": 19,
72
72
  "targetSdk": 31,
73
73
  "compileSdk": 31,
74
74
  "buildTools": "30.0.3",
75
- "firebase": "29.0.4",
75
+ "firebase": "29.1.0",
76
76
  "firebaseCrashlyticsGradle": "2.8.1",
77
77
  "firebasePerfGradle": "1.4.1",
78
78
  "gmsGoogleServicesGradle": "4.3.10",
79
- "playServicesAuth": "20.0.1"
79
+ "playServicesAuth": "20.1.0"
80
80
  }
81
81
  },
82
- "gitHead": "211b7531b731a1fd7feb11ee1d1822470a31eac2"
82
+ "gitHead": "d9cf9c3ea364001d12de0e26693bc9e4e3e2c859"
83
83
  }