@react-native-firebase/firestore 22.4.0 → 23.0.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 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.0.0](https://github.com/invertase/react-native-firebase/compare/v22.4.0...v23.0.0) (2025-08-07)
7
+
8
+ ### ⚠ BREAKING CHANGES
9
+
10
+ - remove deprecated API from auth & crashlytics (#8636)
11
+
12
+ ### Bug Fixes
13
+
14
+ - remove deprecated API from auth & crashlytics ([#8636](https://github.com/invertase/react-native-firebase/issues/8636)) ([213b939](https://github.com/invertase/react-native-firebase/commit/213b939b552e0f84fbccb136a03f23e9b5c8ade8))
15
+
6
16
  ## [22.4.0](https://github.com/invertase/react-native-firebase/compare/v22.3.0...v22.4.0) (2025-07-10)
7
17
 
8
18
  ### Features
package/lib/index.js CHANGED
@@ -314,10 +314,6 @@ class FirebaseFirestoreModule extends FirebaseModule {
314
314
  }
315
315
 
316
316
  if (!isUndefined(settings.host)) {
317
- // eslint-disable-next-line no-console
318
- console.warn(
319
- 'host in settings to connect with firestore emulator is deprecated. Use useEmulator instead.',
320
- );
321
317
  if (!isString(settings.host)) {
322
318
  return Promise.reject(
323
319
  new Error("firebase.firestore().settings(*) 'settings.host' must be a string value."),
package/lib/version.js CHANGED
@@ -1,2 +1,2 @@
1
1
  // Generated by genversion.
2
- module.exports = '22.4.0';
2
+ module.exports = '23.0.0';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-native-firebase/firestore",
3
- "version": "22.4.0",
3
+ "version": "23.0.0",
4
4
  "author": "Invertase <oss@invertase.io> (http://invertase.io)",
5
5
  "description": "React Native Firebase - Cloud Firestore is a NoSQL cloud database to store and sync data between your React Native application and Firebase's database. The API matches the Firebase Web SDK whilst taking advantage of the native SDKs performance and offline capabilities.",
6
6
  "main": "lib/index.js",
@@ -30,11 +30,11 @@
30
30
  "react-native-url-polyfill": "2.0.0"
31
31
  },
32
32
  "peerDependencies": {
33
- "@react-native-firebase/app": "22.4.0"
33
+ "@react-native-firebase/app": "23.0.0"
34
34
  },
35
35
  "publishConfig": {
36
36
  "access": "public",
37
37
  "provenance": true
38
38
  },
39
- "gitHead": "7eaaf185aab15c7e4fc3c218af9be609fe7e0030"
39
+ "gitHead": "14c35416e62f3626d6c2aee2ffd000bd2337884b"
40
40
  }