@react-native-firebase/remote-config 23.8.2 → 23.8.4

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,18 @@
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.8.4](https://github.com/invertase/react-native-firebase/compare/v23.8.3...v23.8.4) (2026-01-24)
7
+
8
+ ### Bug Fixes
9
+
10
+ - internal cross-module references to transpiled code must be dist not src ([b03db0a](https://github.com/invertase/react-native-firebase/commit/b03db0aa3fb748ee039826ccd9c7e73bc3c78f6f))
11
+
12
+ ## [23.8.3](https://github.com/invertase/react-native-firebase/compare/v23.8.2...v23.8.3) (2026-01-16)
13
+
14
+ ### Bug Fixes
15
+
16
+ - **ios:** use react-native podspec module infra for deps ([c66eb63](https://github.com/invertase/react-native-firebase/commit/c66eb63f60cfbabdeb73a3bb1eff8735f11ad391))
17
+
6
18
  ## [23.8.2](https://github.com/invertase/react-native-firebase/compare/v23.8.1...v23.8.2) (2026-01-14)
7
19
 
8
20
  **Note:** Version bump only for package @react-native-firebase/remote-config
@@ -30,10 +30,15 @@ Pod::Spec.new do |s|
30
30
  s.tvos.deployment_target = firebase_tvos_target
31
31
  s.source_files = 'ios/**/*.{h,m}'
32
32
 
33
- # React Native dependencies
34
- s.dependency 'React-Core'
35
33
  s.dependency 'RNFBApp'
36
34
 
35
+ # React Native dependencies
36
+ if defined?(install_modules_dependencies()) != nil
37
+ install_modules_dependencies(s);
38
+ else
39
+ s.dependency "React-Core"
40
+ end
41
+
37
42
  if defined?($FirebaseSDKVersion)
38
43
  Pod::UI.puts "#{s.name}: Using user specified Firebase SDK version '#{$FirebaseSDKVersion}'"
39
44
  firebase_sdk_version = $FirebaseSDKVersion
package/lib/index.js CHANGED
@@ -24,14 +24,14 @@ import {
24
24
  isIOS,
25
25
  isFunction,
26
26
  parseListenerOrObserver,
27
- } from '@react-native-firebase/app/lib/common';
27
+ } from '@react-native-firebase/app/dist/module/common';
28
28
  import Value from './RemoteConfigValue';
29
29
  import {
30
30
  createModuleNamespace,
31
31
  FirebaseModule,
32
32
  getFirebaseRoot,
33
- } from '@react-native-firebase/app/lib/internal';
34
- import { setReactNativeModule } from '@react-native-firebase/app/lib/internal/nativeModule';
33
+ } from '@react-native-firebase/app/dist/module/internal';
34
+ import { setReactNativeModule } from '@react-native-firebase/app/dist/module/internal/nativeModule';
35
35
  import fallBackModule from './web/RNFBConfigModule';
36
36
  import version from './version';
37
37
  import { LastFetchStatus, ValueSource } from './statics';
@@ -17,7 +17,7 @@
17
17
 
18
18
  import { getApp } from '@react-native-firebase/app';
19
19
 
20
- import { MODULAR_DEPRECATION_ARG } from '@react-native-firebase/app/lib/common';
20
+ import { MODULAR_DEPRECATION_ARG } from '@react-native-firebase/app/dist/module/common';
21
21
 
22
22
  /**
23
23
  * @typedef {import('@firebase/app').FirebaseApp} FirebaseApp
package/lib/version.js CHANGED
@@ -1,2 +1,2 @@
1
1
  // Generated by genversion.
2
- module.exports = '23.8.2';
2
+ module.exports = '23.8.4';
@@ -10,8 +10,12 @@ import {
10
10
  makeIDBAvailable,
11
11
  onConfigUpdate,
12
12
  setCustomSignals,
13
- } from '@react-native-firebase/app/lib/internal/web/firebaseRemoteConfig';
14
- import { guard, getWebError, emitEvent } from '@react-native-firebase/app/lib/internal/web/utils';
13
+ } from '@react-native-firebase/app/dist/module/internal/web/firebaseRemoteConfig';
14
+ import {
15
+ guard,
16
+ getWebError,
17
+ emitEvent,
18
+ } from '@react-native-firebase/app/dist/module/internal/web/utils';
15
19
 
16
20
  let configSettingsForInstance = {
17
21
  // [APP_NAME]: RemoteConfigSettings
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-native-firebase/remote-config",
3
- "version": "23.8.2",
3
+ "version": "23.8.4",
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": "23.8.2",
28
- "@react-native-firebase/app": "23.8.2"
27
+ "@react-native-firebase/analytics": "23.8.4",
28
+ "@react-native-firebase/app": "23.8.4"
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": "578c1573d9bcb9a83848f34a08be40c7b5722d9b"
42
+ "gitHead": "30df38f6df8750ff753566eb961bb46c10a84fed"
43
43
  }