Skip to content

Add a changelog entry for Firestore platform logging #2018

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Sep 29, 2020
Merged
Changes from all commits
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
15 changes: 9 additions & 6 deletions firebase-firestore/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
# Unreleased
- [feature] Added `Query.whereNotIn()` and `Query.whereNotEqualTo()` query
operators. `Query.whereNotIn()` finds documents where a specified field’s
value is not in a specified array. `Query.whereNotEqualTo()` finds
documents where a specified field's value does not equal the specified value.
Neither query operator will match documents where the specified field is not
present.

# 21.6.1
- [changed] Added new internal HTTP headers to the gRPC connection.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you move NotIn under 21.6.0 and yours under 21.6.1?


# 21.6.0
- [fixed] Removed a delay that may have prevented Firestore from immediately
Expand All @@ -14,6 +11,12 @@
to the backend immediately after a user signed in.
- [feature] Cloud Firestore now supports connecting to a local emulator via
`FirebaseFirestore#useEmulator()`
- [feature] Added `Query.whereNotIn()` and `Query.whereNotEqualTo()` query
operators. `Query.whereNotIn()` finds documents where a specified field’s
value is not in a specified array. `Query.whereNotEqualTo()` finds
documents where a specified field's value does not equal the specified value.
Neither query operator will match documents where the specified field is not
present.

# 21.4.3
- [changed] Firestore now limits the number of concurrent document lookups it
Expand Down