@react-native-firebase/database 23.8.3 → 23.8.5

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,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.8.5](https://github.com/invertase/react-native-firebase/compare/v23.8.4...v23.8.5) (2026-01-31)
7
+
8
+ **Note:** Version bump only for package @react-native-firebase/database
9
+
10
+ ## [23.8.4](https://github.com/invertase/react-native-firebase/compare/v23.8.3...v23.8.4) (2026-01-24)
11
+
12
+ ### Bug Fixes
13
+
14
+ - internal cross-module references to transpiled code must be dist not src ([b03db0a](https://github.com/invertase/react-native-firebase/commit/b03db0aa3fb748ee039826ccd9c7e73bc3c78f6f))
15
+
6
16
  ## [23.8.3](https://github.com/invertase/react-native-firebase/compare/v23.8.2...v23.8.3) (2026-01-16)
7
17
 
8
18
  ### Bug Fixes
@@ -22,10 +22,10 @@ import {
22
22
  isObject,
23
23
  isString,
24
24
  isNumber,
25
- } from '@react-native-firebase/app/lib/common';
26
- import { deepGet } from '@react-native-firebase/app/lib/common/deeps';
25
+ } from '@react-native-firebase/app/dist/module/common';
26
+ import { deepGet } from '@react-native-firebase/app/dist/module/common/deeps';
27
27
 
28
- import { MODULAR_DEPRECATION_ARG } from '@react-native-firebase/app/lib/common';
28
+ import { MODULAR_DEPRECATION_ARG } from '@react-native-firebase/app/dist/module/common';
29
29
  export default class DatabaseDataSnapshot {
30
30
  constructor(reference, snapshot) {
31
31
  this._snapshot = snapshot;
@@ -24,7 +24,7 @@ import {
24
24
  isUndefined,
25
25
  isValidPath,
26
26
  promiseWithOptionalCallback,
27
- } from '@react-native-firebase/app/lib/common';
27
+ } from '@react-native-firebase/app/dist/module/common';
28
28
 
29
29
  export default class DatabaseOnDisconnect {
30
30
  constructor(reference) {
@@ -28,7 +28,7 @@ import {
28
28
  ReferenceBase,
29
29
  createDeprecationProxy,
30
30
  MODULAR_DEPRECATION_ARG,
31
- } from '@react-native-firebase/app/lib/common';
31
+ } from '@react-native-firebase/app/dist/module/common';
32
32
  import DatabaseDataSnapshot from './DatabaseDataSnapshot';
33
33
  import DatabaseSyncTree from './DatabaseSyncTree';
34
34
 
@@ -15,7 +15,7 @@
15
15
  *
16
16
  */
17
17
 
18
- import { isNull, isNumber, isString } from '@react-native-firebase/app/lib/common';
18
+ import { isNull, isNumber, isString } from '@react-native-firebase/app/dist/module/common';
19
19
 
20
20
  const CONSTANTS = {
21
21
  VIEW_FROM_LEFT: 'left',
@@ -30,7 +30,7 @@ import {
30
30
  promiseWithOptionalCallback,
31
31
  createDeprecationProxy,
32
32
  MODULAR_DEPRECATION_ARG,
33
- } from '@react-native-firebase/app/lib/common';
33
+ } from '@react-native-firebase/app/dist/module/common';
34
34
  import DatabaseDataSnapshot from './DatabaseDataSnapshot';
35
35
  import DatabaseOnDisconnect from './DatabaseOnDisconnect';
36
36
  import DatabaseQuery, {
@@ -15,10 +15,10 @@
15
15
  *
16
16
  */
17
17
 
18
- import { createDeprecationProxy, isString } from '@react-native-firebase/app/lib/common';
19
- import { getReactNativeModule } from '@react-native-firebase/app/lib/internal/nativeModule';
20
- import NativeError from '@react-native-firebase/app/lib/internal/NativeFirebaseError';
21
- import SharedEventEmitter from '@react-native-firebase/app/lib/internal/SharedEventEmitter';
18
+ import { createDeprecationProxy, isString } from '@react-native-firebase/app/dist/module/common';
19
+ import { getReactNativeModule } from '@react-native-firebase/app/dist/module/internal/nativeModule';
20
+ import NativeError from '@react-native-firebase/app/dist/module/internal/NativeFirebaseError';
21
+ import SharedEventEmitter from '@react-native-firebase/app/dist/module/internal/SharedEventEmitter';
22
22
  import DatabaseDataSnapshot from './DatabaseDataSnapshot';
23
23
 
24
24
  class DatabaseSyncTree {
@@ -15,7 +15,7 @@
15
15
  *
16
16
  */
17
17
 
18
- import { createDeprecationProxy } from '@react-native-firebase/app/lib/common';
18
+ import { createDeprecationProxy } from '@react-native-firebase/app/dist/module/common';
19
19
  // To avoid React Native require cycle warnings
20
20
  let DatabaseReference = null;
21
21
  export function provideReferenceClass(databaseReference) {
@@ -15,8 +15,8 @@
15
15
  *
16
16
  */
17
17
 
18
- import NativeError from '@react-native-firebase/app/lib/internal/NativeFirebaseError';
19
- import { isOther } from '@react-native-firebase/app/lib/common';
18
+ import NativeError from '@react-native-firebase/app/dist/module/internal/NativeFirebaseError';
19
+ import { isOther } from '@react-native-firebase/app/dist/module/common';
20
20
 
21
21
  let transactionId = 0;
22
22
 
package/lib/index.js CHANGED
@@ -21,20 +21,20 @@ import {
21
21
  isNumber,
22
22
  isString,
23
23
  MODULAR_DEPRECATION_ARG,
24
- } from '@react-native-firebase/app/lib/common';
24
+ } from '@react-native-firebase/app/dist/module/common';
25
25
  import {
26
26
  createModuleNamespace,
27
27
  FirebaseModule,
28
28
  getFirebaseRoot,
29
- } from '@react-native-firebase/app/lib/internal';
30
- import { setReactNativeModule } from '@react-native-firebase/app/lib/internal/nativeModule';
29
+ } from '@react-native-firebase/app/dist/module/internal';
30
+ import { setReactNativeModule } from '@react-native-firebase/app/dist/module/internal/nativeModule';
31
31
  import DatabaseReference from './DatabaseReference';
32
32
  import DatabaseStatics from './DatabaseStatics';
33
33
  import DatabaseTransaction from './DatabaseTransaction';
34
34
  import version from './version';
35
35
  import fallBackModule from './web/RNFBDatabaseModule';
36
36
 
37
- import { createDeprecationProxy } from '@react-native-firebase/app/lib/common';
37
+ import { createDeprecationProxy } from '@react-native-firebase/app/dist/module/common';
38
38
 
39
39
  const namespace = 'database';
40
40
 
@@ -2,7 +2,7 @@ import { getApp } from '@react-native-firebase/app';
2
2
  import DatabaseStatics from '../DatabaseStatics';
3
3
 
4
4
  const { ServerValue } = DatabaseStatics;
5
- import { MODULAR_DEPRECATION_ARG } from '@react-native-firebase/app/lib/common';
5
+ import { MODULAR_DEPRECATION_ARG } from '@react-native-firebase/app/dist/module/common';
6
6
 
7
7
  /**
8
8
  * @typedef {import("..").FirebaseApp} FirebaseApp
@@ -14,7 +14,7 @@
14
14
  * @implements {IQueryConstraint}
15
15
  */
16
16
 
17
- import { MODULAR_DEPRECATION_ARG } from '@react-native-firebase/app/lib/common';
17
+ import { MODULAR_DEPRECATION_ARG } from '@react-native-firebase/app/dist/module/common';
18
18
 
19
19
  class QueryConstraint {
20
20
  constructor(type, ...args) {
@@ -11,7 +11,7 @@
11
11
  * @returns {Promise<TransactionResult>}
12
12
  */
13
13
 
14
- import { MODULAR_DEPRECATION_ARG } from '@react-native-firebase/app/lib/common';
14
+ import { MODULAR_DEPRECATION_ARG } from '@react-native-firebase/app/dist/module/common';
15
15
 
16
16
  export function runTransaction(ref, transactionUpdate, options) {
17
17
  return ref.transaction.call(
package/lib/version.js CHANGED
@@ -1,2 +1,2 @@
1
1
  // Generated by genversion.
2
- module.exports = '23.8.3';
2
+ module.exports = '23.8.5';
@@ -18,8 +18,12 @@ import {
18
18
  onChildMoved,
19
19
  onChildRemoved,
20
20
  runTransaction,
21
- } from '@react-native-firebase/app/lib/internal/web/firebaseDatabase';
22
- import { guard, getWebError, emitEvent } from '@react-native-firebase/app/lib/internal/web/utils';
21
+ } from '@react-native-firebase/app/dist/module/internal/web/firebaseDatabase';
22
+ import {
23
+ guard,
24
+ getWebError,
25
+ emitEvent,
26
+ } from '@react-native-firebase/app/dist/module/internal/web/utils';
23
27
  import { getQueryInstance } from './query';
24
28
 
25
29
  function rejectWithCodeAndMessage(code, message) {
package/lib/web/query.js CHANGED
@@ -10,7 +10,7 @@ import {
10
10
  endBefore,
11
11
  startAt,
12
12
  startAfter,
13
- } from '@react-native-firebase/app/lib/internal/web/firebaseDatabase';
13
+ } from '@react-native-firebase/app/dist/module/internal/web/firebaseDatabase';
14
14
 
15
15
  export function getQueryInstance(dbRef, modifiers) {
16
16
  const constraints = [];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-native-firebase/database",
3
- "version": "23.8.3",
3
+ "version": "23.8.5",
4
4
  "author": "Invertase <oss@invertase.io> (http://invertase.io)",
5
5
  "description": "React Native Firebase - The Firebase Realtime Database is a cloud-hosted database. Data is stored as JSON and synchronized in realtime to every connected client. React Native Firebase provides native integration with the Android & iOS Firebase SDKs, supporting both realtime data sync and offline capabilities.",
6
6
  "main": "lib/index.js",
@@ -25,11 +25,11 @@
25
25
  "realtome database"
26
26
  ],
27
27
  "peerDependencies": {
28
- "@react-native-firebase/app": "23.8.3"
28
+ "@react-native-firebase/app": "23.8.5"
29
29
  },
30
30
  "publishConfig": {
31
31
  "access": "public",
32
32
  "provenance": true
33
33
  },
34
- "gitHead": "8576e18f72feed50e4e5bd2ae0d46dbfe0e9ac77"
34
+ "gitHead": "93815b11aef9f02c24649212771ecaaf1b230ae7"
35
35
  }