aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAge
...
* Prepare to release FirebaseAuth 4.3.0 (#345)Gravatar Xiangtian Dai2017-10-09
| | | | | | | | | | | | * Update Auth version to 4.3.0 * Revert "Removes user meta from public API (#308)" This reverts commit 1602391bf8a9b6d3247716e3bf7b9f27dec8d2b6. * Revert "Removes metadata from swift sample (#318)" This reverts commit 804ff523a20072fb958e9137c76b9c0e14dda870.
* Add void's to eliminate Xcode 9.1 warnings (#352)Gravatar Paul Beusterien2017-10-09
|
* Fix warnings exposed by Xcode 9.1 in Firestore source (#354)Gravatar Paul Beusterien2017-10-09
|
* Fix warnings exposed by Xcode 9.1 in Auth (#350)Gravatar Paul Beusterien2017-10-09
|
* Delete duplicated FIRAuthOperationType.h (#348)Gravatar Paul Beusterien2017-10-09
|
* Update README.md with Messaging dep on InstanceID (#343)Gravatar Paul Beusterien2017-10-09
| | | Until we can make a hard dependency with CocoaPods 1.4.0, the FirebaseCommunity/Messaging's soft dependency on FirebaseInstanceID needs to be satisfied by a Podfile directive.
* Merge pull request #341 from firebase/new_user_popupGravatar Ivan2017-10-06
|\ | | | | New user popup for sample app
* | Fix a warning that shows up in Xcode 9 (#342)Gravatar Paul Beusterien2017-10-06
| |
| * Add new user popup to sample appGravatar Ivan2017-10-06
| |
| * Add new user popup to sample appGravatar Ivan2017-10-06
| |
| * Remove README.md changesGravatar Ivan2017-10-06
| |
| * Adds new user popup to sample app.Gravatar Ivan2017-10-06
| |
* | Adding NS_SWIFT_NAME for FIRListenerRegistration (#339)Gravatar Sebastian Schmidt2017-10-06
| |
| * fixes readmeGravatar Ivan2017-10-05
|/
* 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.
* Don't swizzle missing and optional delegate methodsGravatar Riz2017-10-04
| | | | | | | | | FCM's swizzling of the user notification center currently swizzles only one of the two optional delegate methods (userNotificationCenter:willPresentNotification:withCompletionHandler:), but not the other (userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:). The didReceiveNotificationResponse, if implemented by the delegate, is the sole receiver of all user action on a notification, including simply tapping on the notification itself. Prior to this change, if the developer had implemented didReceiveNotificationResponse, then FCM would not be able to collect this event for analytics. Additionally, I changed the logic in FIRMessagingRemoteNotificationsProxy to check whether these methods are actually implemented before swizzling them. It was always swizzling, which meant it was adding an implementation if the method didn't exist. This would confuse iOS into thinking the developer did implement these methods and NOT fall back to delivering the notifications to the application delegate. With this change, if the developer did not implement these methods, then FCM will not swizzle those methods. That keeps the behavior true to what the developer intended.
* Fixes reference docs (#330)Gravatar Zsika Phillip2017-10-04
| | | | | | | | | | * Fixes reference docs Fixes reference docs for FIRAuthErrorUserInfoEmailKey. * Modfies error code Modifies the error code where the FIRAuthErrorUserInfoDataKey key is set.
* Add a CHANGELOG for Firestore (#333)Gravatar Gil2017-10-04
|
* Add Firestore to issue template (#332)Gravatar Paul Beusterien2017-10-04
|
* Install pods for Firestore travis run (#328)Gravatar Paul Beusterien2017-10-03
|
* Adding test for merge with server timestamps (#329)Gravatar Sebastian Schmidt2017-10-03
|
* Simplifies logic to post auth state change notifications, which is also ↵Gravatar Xiangtian Dai2017-10-03
| | | | applied more consistently now. (#325)
* Release 4.3.0 (#327)Gravatar Gil2017-10-03
| | | | Initial release of Firestore at 0.8.0 Bump FirebaseCommunity to 0.1.3
* Automatically signs user out if the token is no longer valid. (#323)Gravatar Xiangtian Dai2017-10-02
|
* Disambiguates known errors from web context (#322)Gravatar Zsika Phillip2017-10-02
| | | | | | * Disambiguates known errors from web context - Disambiguates known errors possibly returned by verifyPhoneNumber:UIDelegate:completion:
* Add operation phone auth (#309)Gravatar Zsika Phillip2017-09-27
| | | | | | | | | | | | | | | | | | * Adds operation to verify PhoneNumber requests * Improvements and unit tests * Fixes typo * Addresses comments - Removes the FIRAuthOperation class. - Defines the FIRAuthOperationType as an enum in a class of the same name. - Passes the FIRAuthOperationType value down to the verifyPhoneNumber RPC where it is translated to a string. * Fixes unit tests * Actually fixes the unit tests.
* Removes metadata from swift sample (#318)Gravatar Zsika Phillip2017-09-26
| | | Removes metadata from swift sample until it is made public again.
* Remove Stubs.swift from Auth_Example build target (#317)Gravatar Paul Beusterien2017-09-26
|
* RTDB Changelog for v4.1.0 (#316)Gravatar Sebastian Schmidt2017-09-26
| | | | | | * RTDB Changelog for v4.1.0 * Update CHANGELOG.md
* - Saves user metadata in keychain. (#305)Gravatar Xiangtian Dai2017-09-26
| | | | - Adds Swift stubs for the new API. - Shows the `isNewUser` bit in the sample app.
* Clang-formatting FIRLogger (#312)Gravatar Sebastian Schmidt2017-09-25
|
* Removes user meta from public API (#308)Gravatar Zsika Phillip2017-09-22
| | | | | | | | | | * Removes user meta from public API * remove unused import removes unused import * Removes Swift Name
* Plans next Auth release as 4.2.1 instead. (#306)Gravatar Xiangtian Dai2017-09-22
|
* User meta data (#292)Gravatar Zsika Phillip2017-09-21
| | | | | | | | | | | | * Add user metadata * Small improvements * Addresses comments * Fixes broken tests Adds FIRUserMetadata to unbrella file.
* Updates changelog for next Auth release of 4.3.0. (#303)Gravatar Xiangtian Dai2017-09-21
|
* Fixes a threading issue when calling back with an error for phone number ↵Gravatar Xiangtian Dai2017-09-21
| | | | | auth. (#298) Also changes the sample app to be able to test this case.
* Bump Core to 4.0.8 (#302)Gravatar Paul Beusterien2017-09-21
|
* Update Auth samples to use latest InstanceID (#299)Gravatar Paul Beusterien2017-09-20
|
* Clarify FCM SDK swizzling notice (#291)Gravatar Riz2017-09-20
| | | The previous message was worded in a way as to imply that the FIRAppDelegateProxyEnabled key **should** be set to NO, disabling swizzling. This clarifies that message, indicating that this is for developers who would prefer to manually integrate the SDK.
* Updates .gitignore for the new location of Auth samples. (#297)Gravatar Xiangtian Dai2017-09-20
|
* Merge pull request #296 from firebase/pb-merge-4.2.0Gravatar Paul Beusterien2017-09-20
|\ | | | | Merge release-4.2.0 back to master
| * Merge branch 'release-4.2.0' into pb-merge-4.2.0Gravatar Paul Beusterien2017-09-20
|/|
* | Fix trailing space travis failure (#294)Gravatar Paul Beusterien2017-09-20
| |
| * Update FirebaseCommunity 0.1.2 to use latest InstanceID (#293)Gravatar Paul Beusterien2017-09-20
| |
* | Fix app launch MCS connection issue (#290)Gravatar Riz2017-09-19
| | | | | | | | | | This fixes a bug in the automatic direct channel logic, where a failure to get checkin info from the Instance ID SDK was resulting in a non-retrying failure, causing the automatic connection logic to not retry connecting. A listener is added for a new notification that will be fired from Instance ID. When that notification is fired, `FIRMessagingClient` will re-attempt to connect. NOTE: The actual fix will not work until the Firebase InstanceID SDK is also updated.
* | Log incoming notifications to console as JSON (#286)Gravatar Riz2017-09-19
| | | | | | This will help debug incoming notifications.
| * FIxes Swift name for the new protocol. (#289)Gravatar Xiangtian Dai2017-09-19
| |
* | FIxes Swift name for the new protocol. (#289)Gravatar Xiangtian Dai2017-09-19
| |
* | Log direct-channel state changes to console (#287)Gravatar Riz2017-09-19
| |