Note: this version depends on features available in iOS SDK versions 5.5.0 or later.
To update iOS SDK in existing projects run pod update Firebase/Firestore
.
- Added
Firestore.enablePersistence
- Added
FieldValue
with all currently supported values:arrayUnion
,arrayRemove
,delete
andserverTimestamp
. - Added
arrayContains
argument inQuery.where
method.
- Bump Android and Firebase dependency versions.
- Updated Gradle tooling to match Android Studio 3.1.2.
- Fixes crash on Android if a FirebaseFirestoreException happened.
- Updated iOS implementation to reflect Firebase API changes.
- Fixed bug in Transaction.get that would fail on no data.
- Fixed error in README.md code sample.
- Update transactions example in README to add
await
.
- Add transactions example to README.
- Breaking change.
snapshots
is now a method instead of a getter. - Breaking change.
setData
uses named arguments instead ofSetOptions
.
- Updated Google Play Services dependencies to version 15.0.0.
- Support for BLOB data type.
- Simplified podspec for Cocoapods 1.5.0, avoiding link issues in app archives.
- Breaking change. Renamed 'getCollection()' to 'collection().'
- Expose the Firebase app corresponding to a Firestore
- Expose a constructor for a Firestore with a non-default Firebase app
- Breaking change. Move path getter to CollectionReference
- Add id getter to CollectionReference
- Breaking change. Hide Firestore codec class from public API.
- Adjusted Flutter SDK constraint to match Flutter release with extensible platform message codec, required already by version 0.3.1.
- Move each class into separate files
- Support for batched writes.
- Add GeoPoint class
- Allow for reading and writing DocumentReference, DateTime, and GeoPoint values from and to Documents.
- Breaking change. Set SDK constraints to match the Flutter beta release.
- Fix handling of
null
document snapshots (document not exists). - Add
DocumentSnapshot.exists
.
- Fix Dart 2 type errors.
- Fix Dart 2 type errors.
- Relax sdk upper bound constraint to '<2.0.0' to allow 'edge' dart sdk use.
- Support for Query.getDocuments
- Add transaction support.
- Build fixes for iOS
- Null checking in newly added Query methods
- Query can now have more than one orderBy field.
- startAt, startAfter, endAt, and endBefore support
- limit support
- Support for DocumentReference.documentID
- Support for CollectionReference.add
- Simplified and upgraded Android project template to Android SDK 27.
- Updated package description.
- Add
get
to DocumentReference.
- Fix bug on Android where removeListener is sometimes called without a handle
- Breaking change. Upgraded to Gradle 4.1 and Android Studio Gradle plugin 3.0.1. Older Flutter projects need to upgrade their Gradle setup as well in order to use this version of the plugin. Instructions can be found here.
- Relaxed GMS dependency to [11.4.0,12.0[
- Support for
DocumentReference
update and merge writes - Suppress unchecked warnings and package name warnings on Android
- Added FLT prefix to iOS types.
- Added reference to DocumentSnapshot
- Breaking: removed path from DocumentSnapshot
- Additional test coverage for reading collections and documents
- Fixed typo in DocumentChange documentation
- Support for getCollection
- Support
isNull
filtering inQuery.where
- Fixed
DocumentChange.oldIndex
andDocumentChange.newIndex
to be signed integers (iOS)
- Support for where clauses
- Support for deletion
- Renamed package to cloud_firestore
- Add path property to DocumentSnapshot
- Update project homepage
- Initial Release