aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAge
* 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.
* Include UID when sending (internal) auth state change notifications (#507)Gravatar rsgowman2017-11-30
| | | This is to allow firestore to not require an explicit dependency on auth.
* 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
* Instructions for static library interop with Analytics (#503)Gravatar Paul Beusterien2017-11-29
|
* FIRAppInternal.h is a published private header (#501)Gravatar Paul Beusterien2017-11-28
|
* Update version number (#499)Gravatar Zsika Phillip2017-11-28
| | | | | | | | * updates Auth Change Log * Minor Improvements * Addresses comment
* Update CHANGELOG for Firestore v0.9.3 (#498)Gravatar Gil2017-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
* Adds Auth Result to Sign In with Custom token (#489)Gravatar Zsika Phillip2017-11-27
| | | | | | * Adds Auth Result to Sign In with Custom token * Addresses comomments
* Change FSTExponentialBackoff to use firestore::SecureRandom directly (#492)Gravatar Gil2017-11-27
| | | | | * Migrate FSTExponentialBackoff to Objective-C++ * Change FSTExponentialBackoff to use firestore::SecureRandom directly
* Fix a wrong file name in README.md (#493)Gravatar zxu1232017-11-27
| | | Firebase.xcworkspace exists in /Example while Firestore.xcworkspace exists in /Firestore/Example. We actually want the developer to open Firestore.xcworkspace.
* 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).
* Use brackets for module imports (#487)Gravatar Paul Beusterien2017-11-22
|
* Adds AuthDataResult to signInWithEmailPassword Method (#484)Gravatar Zsika Phillip2017-11-22
| | | | | | | | | | | | * Adds AuthDataResult to signInWithEmail:Password * Addresses comments * Addresses comments * addresses more comments * Fixes broken tests
* Buildable and interoperable source pods (#444)Gravatar Paul Beusterien2017-11-21
|
* Merge pull request #482 from firebase/schmidt-sebastian-patch-1Gravatar Sebastian Schmidt2017-11-21
|\ | | | | Updating Changelog for 4.1.2 RTDB release
* \ Merge pull request #483 from firebase/schmidt-sebastian-patch-2Gravatar Sebastian Schmidt2017-11-21
|\ \ | | | | | | Updating CHANGELOG for Storage to 2.1.0
| * | Updating CHANGELOG for Storage to 2.1.0Gravatar Sebastian Schmidt2017-11-21
|/ /
| * Updating Changelog for 4.1.2 RTDB releaseGravatar Sebastian Schmidt2017-11-21
|/
* Add SecureRandom (#473)Gravatar Gil2017-11-20
| | | | * Add SecureRandom * Add CMake support for building src/support
* Add Auth Result to createUserWithEmail (#477)Gravatar Zsika Phillip2017-11-20
|
* Initial CMake-based build (#472)Gravatar Gil2017-11-20
| | | | | Initial CMake-based build This knows how to download and build googletest.
* 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.
* Adds AuthDataResult to anonymous sign in (#470)Gravatar Zsika Phillip2017-11-17
| | | | | | | | | | * Adds AuthDataResult to anonymous sign in * Fixes typo * Addresses comments * addresses comment on PR
* 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
* removes unused label from sample app (#468)Gravatar Zsika Phillip2017-11-16
|
* 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
* Remove unused code from Messaging (#458)Gravatar Paul Beusterien2017-11-15
|
* Using deferred init to ensure that we init FEmptyNode only onceGravatar Sebastian Schmidt2017-11-09
|\ | | | | Using deferred init to ensure that we init FEmptyNode only once
* \ Adding MD5 hash to FIRStorageMetadataGravatar Sebastian Schmidt2017-11-09
|\ \ | | | | | | | | | - Clang-formatting FIRStorage. - Adding MD5 hash to FIRStorageMetadata.
| * | Adding the md5 hash to FIRStorageMetadataGravatar Sebastian Schmidt2017-11-09
| | |
| * | Clang-formatting StorageGravatar Sebastian Schmidt2017-11-09
|/ /
| * Using defereed init to ensure that we init FEmptyNode only onceGravatar 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
* Enumerator using generic. Cleaner for .. in .. loop in Swift (#433)Gravatar Ibrahim Ulukaya2017-11-08
| | | | | | | | | | | | | | * Enumerator using generic. Cleaner for .. in .. loop in Swift So for childSnapshot in snapshot.children { you don't need to cast each child. Each cild is already known as DataSnapshot * Update FIRDataSnapshot.h * Update FIRMutableData.h * Update FIRMutableData.m
* Update Core and Community versions for Firebase 4.6.0 release (#437)Gravatar Paul Beusterien2017-11-08
|
* Add argument for forcing STDERR output in FIRLogger. (#430)Gravatar Ryan Wilson2017-11-08
|
* Update CHANGELOG for Firestore v0.9.2 (#436)Gravatar Gil2017-11-07
|
* Clang-format Objective-C++ too (#419)Gravatar Gil2017-11-07
|
* Update change log (#429)Gravatar Zsika Phillip2017-11-06
| | | | | | | | * Updates change log for 4.3.2 * Small improvement * Updates podspec as well
* Fixes code style (#428)Gravatar Zsika Phillip2017-11-06
|
* Update travis to Xcode 9.1 (#427)Gravatar Paul Beusterien2017-11-06
| | | | | * Update travis to Xcode 9.1 * Prepend pod lib lint with bundle exec
* Handle error after phone auth linking (#422)Gravatar Zsika Phillip2017-11-05
| | | | Handles possible errors after linking phone number. Also sets anonymous ivar to NO if linking succeeded.
* Update messaging test for upcoming InstanceID changes (#425)Gravatar Paul Beusterien2017-11-03
|
* Moving the Stream class to their own file (#418)Gravatar Sebastian Schmidt2017-10-31
|