aboutsummaryrefslogtreecommitdiffhomepage
path: root/Firestore/CHANGELOG.md
diff options
context:
space:
mode:
authorGravatar rsgowman <rgowman@google.com>2018-01-11 11:50:49 -0500
committerGravatar Gil <mcg@google.com>2018-01-11 08:50:49 -0800
commit1bafdb4ce55db1c743c36f70de810899c55e0992 (patch)
tree0182fd9af344e573f4d6a923df71c2d5f4a8db51 /Firestore/CHANGELOG.md
parent4cdd87af03495f529b2a4c857ea2e4d74b81a862 (diff)
Fix FSTLocalDocumentsView to allow multiple mutations while offline (#644)
* Fix FSTLocalDocumentsView to allow multiple mutations while offline. Previously, only the last mutation would actually be visible.
Diffstat (limited to 'Firestore/CHANGELOG.md')
-rw-r--r--Firestore/CHANGELOG.md4
1 files changed, 3 insertions, 1 deletions
diff --git a/Firestore/CHANGELOG.md b/Firestore/CHANGELOG.md
index 59858e6..fdd43b1 100644
--- a/Firestore/CHANGELOG.md
+++ b/Firestore/CHANGELOG.md
@@ -1,4 +1,4 @@
-# Unreleased (firestore-api-changes)
+# Unreleased
- [changed] Removed the includeMetadataChanges property in FIRDocumentListenOptions
to avoid confusion with the factory method of the same name.
- [changed] Added a commit method that takes no completion handler to FIRWriteBatch.
@@ -13,6 +13,8 @@
`true` if the SDK loses its connection to the backend. A new event with
`snapshot.metadata.isFromCache` set to false will be raised once the
connection is restored and the query is in sync with the backend again.
+- [fixed] Multiple offline mutations now properly reflected in retrieved
+ documents. Previously, only the last mutation would be visible. (#643)
# v0.9.4
- [changed] Firestore no longer has a direct dependency on FirebaseAuth.