aboutsummaryrefslogtreecommitdiffhomepage
path: root/Firestore/CHANGELOG.md
diff options
context:
space:
mode:
authorGravatar Michael Lehenbauer <mikelehen@gmail.com>2018-07-10 16:58:56 -0700
committerGravatar GitHub <noreply@github.com>2018-07-10 16:58:56 -0700
commit25f8691970a9f765a87ab3125776598c92e02744 (patch)
treeefdef14fd22c313411b9125d4804fd59aa114d5e /Firestore/CHANGELOG.md
parent6466c35737eff21e9b48c3ce2353d42628f4bb77 (diff)
Expose array transforms and array contains queries. (#1514)
Also remove test code that was combining multiple array contains queries since those were disallowed in https://github.com/firebase/firebase-ios-sdk/commit/0ec836f9ca71b27fa54a11ae9e07e60b8c5cc002
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 c7b745d..8bb3e60 100644
--- a/Firestore/CHANGELOG.md
+++ b/Firestore/CHANGELOG.md
@@ -1,4 +1,8 @@
# Unreleased
+- [feature] Added `FieldValue.arrayUnion()` and `FieldValue.arrayRemove()` to
+ atomically add and remove elements from an array field in a document.
+- [feature] Added `whereField(arrayContains:)` query filter to find
+ documents where an array field contains a specific element.
# v0.12.5
- [changed] Internal improvements.