aboutsummaryrefslogtreecommitdiffhomepage
path: root/Firestore/CHANGELOG.md
diff options
context:
space:
mode:
authorGravatar Michael Lehenbauer <mikelehen@gmail.com>2018-04-17 15:55:29 -0700
committerGravatar GitHub <noreply@github.com>2018-04-17 15:55:29 -0700
commite36cc9610b11dfd2581ba5e3fda1917e0d5e697a (patch)
tree1a2861ce32463a225f1960c20e2f25b195d39183 /Firestore/CHANGELOG.md
parent2f86a297446b7b2e4832bc2868fe63d54211144f (diff)
Integration tests, changelog, and minor fixes for array transforms. (#1108)
Diffstat (limited to 'Firestore/CHANGELOG.md')
-rw-r--r--Firestore/CHANGELOG.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/Firestore/CHANGELOG.md b/Firestore/CHANGELOG.md
index e17cf56..9f53593 100644
--- a/Firestore/CHANGELOG.md
+++ b/Firestore/CHANGELOG.md
@@ -1,4 +1,8 @@
# Unreleased
+- [feature] Added FieldValue.arrayUnion() and FieldValue.arrayRemove() methods
+ which can be used inside setData() or updateData() calls to atomically add
+ or remove specific elements to an array field in a document without using a
+ transaction.
- [changed] Replaced the `DocumentListenOptions` object with a simple boolean.
Instead of calling
`addSnapshotListener(options: DocumentListenOptions.includeMetadataChanges(true))`