@react-native-firebase/remote-config 18.1.0 → 18.3.0
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +10 -0
- package/lib/index.js +1 -7
- package/lib/version.js +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
@@ -3,6 +3,16 @@
|
|
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
|
+
## [18.3.0](https://github.com/invertase/react-native-firebase/compare/v18.2.0...v18.3.0) (2023-07-19)
|
7
|
+
|
8
|
+
**Note:** Version bump only for package @react-native-firebase/remote-config
|
9
|
+
|
10
|
+
## [18.2.0](https://github.com/invertase/react-native-firebase/compare/v18.1.0...v18.2.0) (2023-07-13)
|
11
|
+
|
12
|
+
### Bug Fixes
|
13
|
+
|
14
|
+
- **app, ios:** incorporate firebase-ios-sdk 10.12.0 ([#7231](https://github.com/invertase/react-native-firebase/issues/7231)) ([ee66459](https://github.com/invertase/react-native-firebase/commit/ee66459cd214ffb84ce2d4e15eef79d047f075ab))
|
15
|
+
|
6
16
|
## [18.1.0](https://github.com/invertase/react-native-firebase/compare/v18.0.0...v18.1.0) (2023-06-22)
|
7
17
|
|
8
18
|
### Features
|
package/lib/index.js
CHANGED
@@ -325,13 +325,7 @@ class FirebaseConfigModule extends FirebaseModule {
|
|
325
325
|
}
|
326
326
|
subscription.remove();
|
327
327
|
this._configUpdateListenerCount--;
|
328
|
-
|
329
|
-
// if we try to remove them. Temporarily allow iOS native listener to stay active forever after
|
330
|
-
// first subscription for an app, until issue #11458 in firebase-ios-sdk repo is resolved.
|
331
|
-
// react-native-firebase native subscribe code won't add multiple native listeners for same app,
|
332
|
-
// so this prevents listener accumulation but means the web socket on iOS will never close.
|
333
|
-
// TODO: Remove when firebase-ios-sdk 10.12.0 is adopted, the PR to fix it should be included
|
334
|
-
if (this._configUpdateListenerCount === 0 && Platform.OS !== 'ios') {
|
328
|
+
if (this._configUpdateListenerCount === 0) {
|
335
329
|
this.native.removeConfigUpdateRegistration();
|
336
330
|
}
|
337
331
|
};
|
package/lib/version.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1
1
|
// Generated by genversion.
|
2
|
-
module.exports = '18.
|
2
|
+
module.exports = '18.3.0';
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@react-native-firebase/remote-config",
|
3
|
-
"version": "18.
|
3
|
+
"version": "18.3.0",
|
4
4
|
"author": "Invertase <oss@invertase.io> (http://invertase.io)",
|
5
5
|
"description": "React Native Firebase - React Native Firebase provides native integration with Remote Config, allowing you to change the appearance and/or functionality of your app without requiring an app update.",
|
6
6
|
"main": "lib/index.js",
|
@@ -24,11 +24,11 @@
|
|
24
24
|
"remote-config"
|
25
25
|
],
|
26
26
|
"peerDependencies": {
|
27
|
-
"@react-native-firebase/analytics": "18.
|
28
|
-
"@react-native-firebase/app": "18.
|
27
|
+
"@react-native-firebase/analytics": "18.3.0",
|
28
|
+
"@react-native-firebase/app": "18.3.0"
|
29
29
|
},
|
30
30
|
"publishConfig": {
|
31
31
|
"access": "public"
|
32
32
|
},
|
33
|
-
"gitHead": "
|
33
|
+
"gitHead": "cca7053a12ea04c8476f880bd2220f44ee4ae17a"
|
34
34
|
}
|