@react-native-firebase/firestore 16.5.1 → 16.5.2

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,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
+ ### [16.5.2](https://github.com/invertase/react-native-firebase/compare/v16.5.1...v16.5.2) (2023-01-23)
7
+
8
+ **Note:** Version bump only for package @react-native-firebase/firestore
9
+
6
10
  ### [16.5.1](https://github.com/invertase/react-native-firebase/compare/v16.5.0...v16.5.1) (2023-01-20)
7
11
 
8
12
  ### Bug Fixes
@@ -135,12 +135,14 @@ public class ReactNativeFirebaseFirestoreQuery {
135
135
  FieldPath fieldPath = FieldPath.of(segmentArray);
136
136
  String direction = (String) order.get("direction");
137
137
 
138
- query = query.orderBy(Objects.requireNonNull(fieldPath), Query.Direction.valueOf(direction));
138
+ query =
139
+ query.orderBy(Objects.requireNonNull(fieldPath), Query.Direction.valueOf(direction));
139
140
  } else {
140
141
  String fieldPath = (String) order.get("fieldPath");
141
142
  String direction = (String) order.get("direction");
142
143
 
143
- query = query.orderBy(Objects.requireNonNull(fieldPath), Query.Direction.valueOf(direction));
144
+ query =
145
+ query.orderBy(Objects.requireNonNull(fieldPath), Query.Direction.valueOf(direction));
144
146
  }
145
147
  }
146
148
  }
package/lib/version.js CHANGED
@@ -1,2 +1,2 @@
1
1
  // Generated by genversion.
2
- module.exports = '16.5.1';
2
+ module.exports = '16.5.2';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-native-firebase/firestore",
3
- "version": "16.5.1",
3
+ "version": "16.5.2",
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",
@@ -27,10 +27,10 @@
27
27
  "firestore"
28
28
  ],
29
29
  "peerDependencies": {
30
- "@react-native-firebase/app": "16.5.1"
30
+ "@react-native-firebase/app": "16.5.2"
31
31
  },
32
32
  "publishConfig": {
33
33
  "access": "public"
34
34
  },
35
- "gitHead": "fafaf580f384e8c4b47788adfab0b29ee2cfd5c0"
35
+ "gitHead": "97a5523bac4570ba7b47fbfdbb22348f38246d11"
36
36
  }