Skip to content
This repository was archived by the owner on Feb 22, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Merge branch 'master' of https://github.com/flutter/plugins into fire…
…store-get-documents

# Conflicts:
#	packages/cloud_firestore/CHANGELOG.md
#	packages/cloud_firestore/android/src/main/java/io/flutter/plugins/firebase/cloudfirestore/CloudFirestorePlugin.java
  • Loading branch information
briblanch committed Feb 2, 2018
commit 2d18147f85a64d5cc9903fbc28a8adecdc1865cf
6 changes: 5 additions & 1 deletion packages/cloud_firestore/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
## 0.2.7
## 0.2.8
* Support for Query.getDocuments

## 0.2.7

* Add transaction support.

## 0.2.6

* Build fixes for iOS
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,11 @@ private Map<String, Object> parseQuerySnapshot(QuerySnapshot querySnapshot) {
return data;
}

private Transaction getTransaction(Map<String, Object> arguments) {
return transactions.get((Integer) arguments.get("transactionId"));

}

private Query getQuery(Map<String, Object> arguments) {
Query query = getCollectionReference(arguments);
@SuppressWarnings("unchecked")
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.