@react-native-firebase/remote-config 24.0.0 → 24.1.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 +4 -0
- package/lib/index.d.ts +1 -1
- package/lib/version.js +1 -1
- package/package.json +4 -4
- package/typedoc.json +6 -0
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,10 @@
|
|
|
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
|
+
## [24.1.0](https://github.com/invertase/react-native-firebase/compare/v24.0.0...v24.1.0) (2026-06-05)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @react-native-firebase/remote-config
|
|
9
|
+
|
|
6
10
|
## [24.0.0](https://github.com/invertase/react-native-firebase/compare/v23.8.6...v24.0.0) (2026-04-01)
|
|
7
11
|
|
|
8
12
|
### Bug Fixes
|
package/lib/index.d.ts
CHANGED
|
@@ -434,7 +434,7 @@ export namespace FirebaseRemoteConfigTypes {
|
|
|
434
434
|
* and the config update process fetches the new config but does not automatically activate
|
|
435
435
|
* it for you. Typically you will activate the config in your callback to use the new values.
|
|
436
436
|
*
|
|
437
|
-
* @param remoteConfig - The
|
|
437
|
+
* @param remoteConfig - The RemoteConfig instance.
|
|
438
438
|
* @param observer - The {@link ConfigUpdateObserver} to be notified of config updates.
|
|
439
439
|
* @returns An {@link Unsubscribe} function to remove the listener.
|
|
440
440
|
*/
|
package/lib/version.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
// Generated by genversion.
|
|
2
|
-
module.exports = '24.
|
|
2
|
+
module.exports = '24.1.0';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@react-native-firebase/remote-config",
|
|
3
|
-
"version": "24.
|
|
3
|
+
"version": "24.1.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,8 +24,8 @@
|
|
|
24
24
|
"remote-config"
|
|
25
25
|
],
|
|
26
26
|
"peerDependencies": {
|
|
27
|
-
"@react-native-firebase/analytics": "24.
|
|
28
|
-
"@react-native-firebase/app": "24.
|
|
27
|
+
"@react-native-firebase/analytics": "24.1.0",
|
|
28
|
+
"@react-native-firebase/app": "24.1.0"
|
|
29
29
|
},
|
|
30
30
|
"publishConfig": {
|
|
31
31
|
"access": "public",
|
|
@@ -39,5 +39,5 @@
|
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@types/text-encoding": "^0.0.40"
|
|
41
41
|
},
|
|
42
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "804a51fd265453f2385adb0ac96a6abf992c0316"
|
|
43
43
|
}
|