@react-native-firebase/remote-config 23.1.1 → 23.2.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 +10 -0
- package/lib/version.js +1 -1
- package/lib/web/RNFBConfigModule.js +4 -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
|
+
## [23.2.0](https://github.com/invertase/react-native-firebase/compare/v23.1.2...v23.2.0) (2025-08-29)
|
7
|
+
|
8
|
+
**Note:** Version bump only for package @react-native-firebase/remote-config
|
9
|
+
|
10
|
+
## [23.1.2](https://github.com/invertase/react-native-firebase/compare/v23.1.1...v23.1.2) (2025-08-25)
|
11
|
+
|
12
|
+
### Bug Fixes
|
13
|
+
|
14
|
+
- **remote-config, other:** return proper error for onConfigUpdated ([aeb3ead](https://github.com/invertase/react-native-firebase/commit/aeb3ead98f3f7c58273436321c91e34f43383b5f))
|
15
|
+
|
6
16
|
## [23.1.1](https://github.com/invertase/react-native-firebase/compare/v23.1.0...v23.1.1) (2025-08-22)
|
7
17
|
|
8
18
|
### Bug Fixes
|
package/lib/version.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1
1
|
// Generated by genversion.
|
2
|
-
module.exports = '23.
|
2
|
+
module.exports = '23.2.0';
|
@@ -122,6 +122,9 @@ export default {
|
|
122
122
|
});
|
123
123
|
},
|
124
124
|
onConfigUpdated() {
|
125
|
-
|
125
|
+
throw getWebError({
|
126
|
+
code: 'unsupported',
|
127
|
+
message: 'Not supported by the Firebase Javascript SDK.',
|
128
|
+
});
|
126
129
|
},
|
127
130
|
};
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@react-native-firebase/remote-config",
|
3
|
-
"version": "23.
|
3
|
+
"version": "23.2.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,12 +24,12 @@
|
|
24
24
|
"remote-config"
|
25
25
|
],
|
26
26
|
"peerDependencies": {
|
27
|
-
"@react-native-firebase/analytics": "23.
|
28
|
-
"@react-native-firebase/app": "23.
|
27
|
+
"@react-native-firebase/analytics": "23.2.0",
|
28
|
+
"@react-native-firebase/app": "23.2.0"
|
29
29
|
},
|
30
30
|
"publishConfig": {
|
31
31
|
"access": "public",
|
32
32
|
"provenance": true
|
33
33
|
},
|
34
|
-
"gitHead": "
|
34
|
+
"gitHead": "7c862f8ac932bb7d32d29bc538e533f87dee9a10"
|
35
35
|
}
|