aboutsummaryrefslogtreecommitdiffhomepage
path: root/Firestore/Source
Commit message (Collapse)AuthorAge
* Add FirebaseFirestore.h to fix Firebase module in source build (#539)Gravatar Paul Beusterien2017-12-07
|
* Merge pull request #514 from firebase/zxu/logofflineGravatar zxu2017-12-07
|\ | | | | Warn user if we raise with empty while not online
| * refactoring the condition when to warn offlineGravatar zxu1232017-12-06
| |
| * implement log warning for offline statusGravatar zxu1232017-12-05
| | | | | | | | | | * Move the logic from FSTEventManager to FSTRemoteStore. Pros: per query vs per stream. * Since state can go into unknown normally (e.g. no listener is registered and nobody care the status), we only warns when status is actually offline to avoid confusion.
* | Standardize cross module imports with angle bracket syntax (#526)Gravatar Paul Beusterien2017-12-04
| | | | | | | | Qualify all cross-pod imports of FirebaseCore headers
| * Merge branch 'master' into zxu/logofflineGravatar zxu1232017-12-04
| |\ | |/ |/| | | | | fix pod error: [!] CocoaPods could not find compatible versions for pod "FirebaseCor
* | Cleanup import path for FIRLogger (#523)Gravatar rsgowman2017-12-01
| |
* | Merge pull request #522 from firebase/mrschmidt-crashGravatar Sebastian Schmidt2017-12-01
|\ \ | | | | | | Ignoring stream messages for closed streams
| * | Ignoring stream messages for closed streamsGravatar Sebastian Schmidt2017-12-01
| | |
* | | Merge pull request #510 from firebase/mrschmidt-crashGravatar Sebastian Schmidt2017-12-01
|\| | | | | | | | Fixing race in FSTWriteStream
* | | Fix long line and run style (#517)Gravatar Paul Beusterien2017-11-30
| | |
| * | Checking for stream close in handleStreamCloseGravatar Sebastian Schmidt2017-11-30
| | |
* | | add completion execution guarantees to firestore write ops (#481)Gravatar Morgan Chen2017-11-30
| | |
| | * Warn user if we raise with empty while not onlineGravatar zxu1232017-11-30
| | | | | | | | | | | | To avoid surprise by adding a warning. Right now, when offline, empty result is returned with no log nor error, see https://groups.google.com/forum/#!topic/google-cloud-firestore-discuss/puFl9HVU57I/discussion
* | | Move sources into firebase::firestore and internal namespaces (#494)Gravatar Gil2017-11-30
| |/ |/| | | | | | | | | | | * Move sources into firebase::firestore and internal namespaces Combine support and core/util packages; this distinction wasn't really paying its freight.
* | Fix StringView to properly convert NSStrings (#509)Gravatar rsgowman2017-11-30
| | | | | | | | | | | | | | | | | | NSStrings are utf16, so NSString::length returns the number of utf16 characters present in the string. When the string is entirely made up of US-ASCII characters, everything's fine. But when characters requiring 16 bits are present, the size calculations were incorrect. Fixed by calculating the length based on the destination character set (i.e. UTF8).
* | Remove dependency on FirebaseAuth (#505)Gravatar rsgowman2017-11-30
| | | | | | | | We now use the internal core functionality instead.
* | Allow clang-format to find Firestore/Source/Auth (#508)Gravatar Gil2017-11-30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Avoid pruning paths with find find . -path foo -path bar -path baz is horrifically inefficient; properly excluding all of FirebaseAuth without excluding Firestore/Source/Auth ends up taking 1.5 minutes on my machine. Deleting via sed is much faster. * Allow a branch name or filenames to be specified on the command line e.g. ./scripts/style.sh master formats only files changed since master. * Format Firebase/Source/Auth code * Use alternate delimeter for path regexen
| * Fixing testsGravatar Sebastian Schmidt2017-11-29
| |
| * Merge branch 'master' into mrschmidt-crashGravatar Sebastian Schmidt2017-11-29
| |\ | |/ |/|
| * Fixing race in FSTWriteStreamGravatar Sebastian Schmidt2017-11-29
| |
* | FIRAppInternal.h is a published private header (#501)Gravatar Paul Beusterien2017-11-28
| |
* | Replacing FIR_SWIFT_NAME macro with NS_SWIFT_NAME. (#476)Gravatar Ryan Wilson2017-11-28
| | | | | | | | | | | | | | | | | | | | * Replacing FIR_SWIFT_NAME macro with NS_SWIFT_NAME. This pushes the minimum Xcode version to 7.3, as NS_SWIFT_NAME was limited before that version (which is why the macro was introduced in the first place). * Fixed FIRMessaging header
* | Port autoid to C++ and remove FSTUtil (#475)Gravatar Gil2017-11-27
| | | | | | | | | | | | * Port autoid to C++ * Reimplement FSTUtil on top of firestore::CreateAutoId directly * Migrate FSTUtil callers to directly use firestore::CreateAutoId * Remove FSTUtil
* | Change FSTExponentialBackoff to use firestore::SecureRandom directly (#492)Gravatar Gil2017-11-27
| | | | | | | | | | * Migrate FSTExponentialBackoff to Objective-C++ * Change FSTExponentialBackoff to use firestore::SecureRandom directly
* | Use a prefix scan when fetching documents matching a query. (#488)Gravatar rsgowman2017-11-22
| | | | | | | | Minor optimization (which is already present in the ts code).
* | Buildable and interoperable source pods (#444)Gravatar Paul Beusterien2017-11-21
| |
* | Use fully qualified imports in Firestore (#467)Gravatar Gil2017-11-16
|/ | | | | | | | | This simplifies the import process back into google3 and allows us to add additional directories to the project without needing to update the project files for each directory we add. This shows up most clearly in the change to Firestore/Example/Firestore.xcodeproj/project.pbxproj: this no longer needs to list essentially every directory in the project as a header search path. * Clang-format configuration for C++ files * Add support C++-only sources to the podspec * Podspec support for fully qualified imports * xcodeproj changes for fully-qualified imports * Use fully-qualified imports in Firestore sources
* Sending an empty write request before tearing down the stream (#438)Gravatar Sebastian Schmidt2017-11-08
|
* Clang-format Objective-C++ too (#419)Gravatar Gil2017-11-07
|
* Moving the Stream class to their own file (#418)Gravatar Sebastian Schmidt2017-10-31
|
* Closing the write and watch stream after 60s of idleness (#388)Gravatar Sebastian Schmidt2017-10-30
|
* b/67423356: Exponential backoff on writes should back off until the first ↵Gravatar Michael Lehenbauer2017-10-26
| | | | | successful write (#408) Port the logic from Android / web to delay backoff reset until the first successful write on the stream.
* Moving the StreamTest to integration tests (#391)Gravatar Sebastian Schmidt2017-10-24
|
* Allowing field deletes with merge-enabled sets (#404)Gravatar Sebastian Schmidt2017-10-23
|
* Port of fix for b/67042460 (retry more often before considering client ↵Gravatar Michael Lehenbauer2017-10-23
| | | | | | offline) (#403) This ensures FSTRemoteStore always tries to connect at least twice before surfacing an FSTOnlineStateFailed event to external code (which may trigger gets to fail, cached data to be surfaced, etc.).
* Add isEqual() and port DocumentReference array test. (#380)Gravatar Michael Lehenbauer2017-10-19
| | | | * Ports the test for the fix I made for Android for DocumentReference objects in arrays (bug not present in iOS). * Implements isEqual on FIRQuery and FIRDocumentReference.
* Fix validation of nested arrays to allow indirect nesting (#377)Gravatar Gil2017-10-16
|
* Adding goOnline/goOffline to the RemoteStore (#347)Gravatar Sebastian Schmidt2017-10-11
|
* Release listener references on remove in FSTListenerRegistration (#349)Gravatar Erik Kessler2017-10-09
|
* Fix warnings exposed by Xcode 9.1 in Firestore source (#354)Gravatar Paul Beusterien2017-10-09
|
* Adding NS_SWIFT_NAME for FIRListenerRegistration (#339)Gravatar Sebastian Schmidt2017-10-06
|
* Update error messages with new Swift syntax (#336)Gravatar Ryan Wilson2017-10-05
| | | | Update error messages with new Swift Syntax
* Add an NS_SWIFT_NAME for FIRSnapshotMetadata (#334)Gravatar Gil2017-10-04
| | | | | Fixes b/67332554 Note that this is a breaking change for Swift users of the API.
* Release 4.3.0 (#327)Gravatar Gil2017-10-03
Initial release of Firestore at 0.8.0 Bump FirebaseCommunity to 0.1.3