aboutsummaryrefslogtreecommitdiffhomepage
path: root/Firestore/Example
Commit message (Collapse)AuthorAge
* Merge pull request #576 from firebase/release-4.8.0Gravatar Kyle Ju2017-12-19
|\ | | | | Release 4.8.0
* | Use angle brackets for nonlocal #includes in Firestore (#580)Gravatar Gil2017-12-19
| |
| * Update component versions for Firebase 4.8.0 (#561)Gravatar Kyle Ju2017-12-12
|/
* Merge pull request #521 from firebase/release-4.7.0Gravatar Paul Beusterien2017-12-01
|\ | | | | Core is now 4.7.0
| * Core is now 4.7.0Gravatar Paul Beusterien2017-12-01
| |
* | Fix long line and run style (#517)Gravatar Paul Beusterien2017-11-30
| |
* | 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).
* 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
|
* Add SecureRandom (#473)Gravatar Gil2017-11-20
| | | | * Add SecureRandom * Add CMake support for building src/support
* Use NSPrincipalClass as the most reliable way to find tests. (#471)Gravatar Gil2017-11-17
| | | | | | | Unfortunately, using __attribute__((constructor)) doesn't really work because it races with all other constructors run pre-main. As a result it's possible for a test's constructor to run after registration. NSPrincipalClass gets instantiated only after all constructors have run.
* 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
* Additional support for C++ sources in Firestore (#462)Gravatar Gil2017-11-16
| | | | | * Fix up style from previous PRs * Clang-format configuration for C++ files * Add support C++-only sources to the podspec
* Clang-formatting StorageGravatar Sebastian Schmidt2017-11-09
|
* Make FSTIntegrationTestCase Objective-C++ (#439)Gravatar Gil2017-11-09
| | | | | | | | | | | * Make all FIRLogger functions extern "C" * Make FSTIntegrationTestCase Objective-C++ Keep external interface to FSTIntegrationTestCase Objective-C * Add explicit dependency on Firebase/Community/Core from Tests This fixes a linkage error on a missing _FIRSetLoggerLevel symbol
* Sending an empty write request before tearing down the stream (#438)Gravatar Sebastian Schmidt2017-11-08
|
* Run GoogleTest-based C++ tests in Xcode (#420)Gravatar Gil2017-11-08
| | | | | | * Use GoogleTest as a dependency of Firestore_Tests * Remove top-level leveldb-library from HEADER_SEARCH_PATHS * Add string_util_test to the project and get it to build * Implement FSTGoogleTestTests, a bridge between GoogleTest and XCTest
* 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
|
* Really fix pod update warning (#416)Gravatar Paul Beusterien2017-10-30
|
* 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
|
* Fixing XCTAssertEqual order (#356)Gravatar Sebastian Schmidt2017-10-10
|
* Adding NS_SWIFT_NAME for FIRListenerRegistration (#339)Gravatar Sebastian Schmidt2017-10-06
|
* 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.
* Adding test for merge with server timestamps (#329)Gravatar Sebastian Schmidt2017-10-03
|
* Release 4.3.0 (#327)Gravatar Gil2017-10-03
Initial release of Firestore at 0.8.0 Bump FirebaseCommunity to 0.1.3