@react-native-firebase/remote-config 23.4.0 → 23.4.1
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 +6 -0
- package/lib/polyfills.js +28 -0
- package/lib/version.js +1 -1
- package/lib/web/RNFBConfigModule.js +1 -0
- package/package.json +10 -4
package/CHANGELOG.md
CHANGED
@@ -3,6 +3,12 @@
|
|
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.4.1](https://github.com/invertase/react-native-firebase/compare/v23.4.0...v23.4.1) (2025-10-14)
|
7
|
+
|
8
|
+
### Bug Fixes
|
9
|
+
|
10
|
+
- **app:** adopt firebase-js-sdk 12.3.0 ([4fecb30](https://github.com/invertase/react-native-firebase/commit/4fecb304be7f223959d4aba0a0e8b7e550983024))
|
11
|
+
|
6
12
|
## [23.4.0](https://github.com/invertase/react-native-firebase/compare/v23.3.1...v23.4.0) (2025-09-24)
|
7
13
|
|
8
14
|
**Note:** Version bump only for package @react-native-firebase/remote-config
|
package/lib/polyfills.js
ADDED
@@ -0,0 +1,28 @@
|
|
1
|
+
/*
|
2
|
+
* Copyright (c) 2016-present Invertase Limited & Contributors
|
3
|
+
*
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
5
|
+
* you may not use this library except in compliance with the License.
|
6
|
+
* You may obtain a copy of the License at
|
7
|
+
*
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
9
|
+
*
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
13
|
+
* See the License for the specific language governing permissions and
|
14
|
+
* limitations under the License.
|
15
|
+
*
|
16
|
+
*/
|
17
|
+
|
18
|
+
import { polyfillGlobal } from 'react-native/Libraries/Utilities/PolyfillFunctions';
|
19
|
+
|
20
|
+
// maybe this could be remote-config local install of text-encoding (similar to ai package)
|
21
|
+
import { TextEncoder, TextDecoder } from 'text-encoding';
|
22
|
+
|
23
|
+
polyfillGlobal('TextEncoder', () => TextEncoder);
|
24
|
+
polyfillGlobal('TextDecoder', () => TextDecoder);
|
25
|
+
// Object.assign(global, {
|
26
|
+
// TextEncoder: TextEncoder,
|
27
|
+
// TextDecoder: TextDecoder,
|
28
|
+
// });
|
package/lib/version.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1
1
|
// Generated by genversion.
|
2
|
-
module.exports = '23.4.
|
2
|
+
module.exports = '23.4.1';
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@react-native-firebase/remote-config",
|
3
|
-
"version": "23.4.
|
3
|
+
"version": "23.4.1",
|
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,18 @@
|
|
24
24
|
"remote-config"
|
25
25
|
],
|
26
26
|
"peerDependencies": {
|
27
|
-
"@react-native-firebase/analytics": "23.4.
|
28
|
-
"@react-native-firebase/app": "23.4.
|
27
|
+
"@react-native-firebase/analytics": "23.4.1",
|
28
|
+
"@react-native-firebase/app": "23.4.1"
|
29
29
|
},
|
30
30
|
"publishConfig": {
|
31
31
|
"access": "public",
|
32
32
|
"provenance": true
|
33
33
|
},
|
34
|
-
"
|
34
|
+
"dependencies": {
|
35
|
+
"text-encoding": "^0.7.0"
|
36
|
+
},
|
37
|
+
"devDependencies": {
|
38
|
+
"@types/text-encoding": "^0.0.40"
|
39
|
+
},
|
40
|
+
"gitHead": "15a0d8ddaedcaeedf9ee322ff31810f8873c400a"
|
35
41
|
}
|