aboutsummaryrefslogtreecommitdiffhomepage
path: root/Firebase
Commit message (Collapse)AuthorAge
* Enable FIRLogger to be weakly linked (#244)Gravatar Paul Beusterien2017-09-10
|
* ReCAPTCHA verification error handling (#241)Gravatar Zsika Phillip2017-09-10
| | | | | | | | * reCAPTCHA error handling * Improvements * Addresses comments
* Non-functional changes to reduce FirebaseCore by 792 bytes (#250)Gravatar Paul Beusterien2017-09-10
|
* 473 bytes of low-hanging size fruit and typo fix (#246)Gravatar Paul Beusterien2017-09-08
|
* Fixing the session identifier for non-default apps (#240)Gravatar Sebastian Schmidt2017-09-06
|
* Firebase Storage: Allowing metadata to be cleared (#197)Gravatar Sebastian Schmidt2017-09-06
| | | | * Allowing metadata to be cleared
* Deprecates the old phone number auth method. (#236)Gravatar Xiangtian Dai2017-09-06
|
* Switchs Auth Swift sample to use the new phone number auth API. (#237)Gravatar Xiangtian Dai2017-09-06
| | | | Also fixes macOS tests.
* Fixes Auth URL presenter: (#239)Gravatar Xiangtian Dai2017-09-06
| | | | | | - kinda works on iOS 8-; - calls back with cancellation error correctly on 'Done' button; - cleans up upon completion.
* Ensure that FIRLogger functions are declared as C (#238)Gravatar Michael Haney2017-09-06
| | | Wrap the FIRLogger functions in an extern "C" when being compiled as C++.
* Removes canHandleURL from FIRAuthInternal (#235)Gravatar Zsika Phillip2017-09-05
| | | | | | | | * Removes canHandleURL from FIRAuthInternal Removes canHandleURL from FIRAuth_Internal and makes small modification to FIRPhoneAuthProvider unit test. * Addresses comment
* Updates changelog for upcoming FirebaseAuth 4.2.0 release. (#234)Gravatar Xiangtian Dai2017-09-05
|
* Declares FirebaseAuth depending on SafariServices. (#232)Gravatar Xiangtian Dai2017-09-05
|
* Fixes Auth build when module is disabled (#231)Gravatar Xiangtian Dai2017-09-04
| | | | | | | | | * Changes "@import" to "@import" to make the code buildable when module is disabled. Also rearranges code to merge two #if blocks. * Makes comments more accurate. * Fixes comments.
* Adds app verification alternative (#228)Gravatar Zsika Phillip2017-09-04
| | | | * Adds app verification alternative
* Fixes macOS unit test failures introduced in #222 . (#229)Gravatar Xiangtian Dai2017-09-02
|
* Swizzles APNs token error app delegate method for faster turnaround. (#226)Gravatar Xiangtian Dai2017-09-01
| | | Also removes the server request in case the token is missing.
* Add FirAuthUrlPresenter (#222)Gravatar Zsika Phillip2017-09-01
| | | * Adds FIRAuthURLPResenter and FIRAuthUIDelegate
* Encode the topic name when subscribing (#220)Gravatar Riz2017-08-30
| | | | This should address the issue filed at: https://github.com/firebase/quickstart-ios/issues/242, where a topic name containing a `%` character was failing. It turns out that the topic name was never being url-encoded.
* fixes request URL (#218)Gravatar Zsika Phillip2017-08-25
|
* Update Changelog for 4.0.2 release. (#217)Gravatar Ryan Wilson2017-08-25
|
* Updates Auth ChangeLog for the next release. (#216)Gravatar Xiangtian Dai2017-08-25
| | | Also moves an unused public method into private header.
* Bump Core to 4.0.6 (#215)Gravatar Ryan Wilson2017-08-25
| | | Bump Core as part of the next Firebase release.
* Add get Auth domain RPC (#214)Gravatar Zsika Phillip2017-08-24
| | | | | | | | | | * Add get Auth domain RPC * Fixes indentation * Addresses comments * ran tests on Example/Firebase.xcodeproj
* Don't save library version to NSUserDefaults (#212)Gravatar Riz2017-08-23
| | | | | This seems to be a holdover from some old code, and it's not being used anywhere in the component. Plus it's better not to be saving anything in `[NSUserDefaults standardUserDefaults]` as that is the developer/app's domain. Also renamed the messaging code while I was in there to be something meaningful ("000" → "PrintLibraryVersion").
* Adds reCAPTCHA Token (#211)Gravatar Zsika Phillip2017-08-23
| | | | * Adds reCAPTCHA Token to the "send verification code" request.
* Forwards app delegate's openURL invocations to `FIRAuth`. (#207)Gravatar Xiangtian Dai2017-08-21
|
* clang-format fix (#205)Gravatar Paul Beusterien2017-08-18
|
* Add Crashlytics and Fabric to Firebase umbrella header. (#192)Gravatar Ryan Wilson2017-08-17
| | | | This will prevent users from having to specifically import Fabric or Crashlytics into their projects when already importing Firebase.
* Delete app from Database when deleted in Core. (#194)Gravatar Ryan Wilson2017-08-17
| | | | | | | | | | | | | * Delete an app from Database when deleted in Core. When a FIRApp is deleted in Core, it should also be deleted from the instances array in Database. See #160 for more details. * Add tests for deleting databases. * Add call to clean up deleted FIRDatabase instance.
* Inlcuding bandwidth usage in error message for queries without indexes (#201)Gravatar Sebastian Schmidt2017-08-16
|
* Small improvements to reference docs (#193)Gravatar Zsika Phillip2017-08-15
|
* Clean up FIRBundleUtil. (#191)Gravatar Ryan Wilson2017-08-14
| | | Remove `relevantBundleIdentifiers method that isn't used anywhere.
* Handles MISSING_EMAIL error from server. (#187)Gravatar Xiangtian Dai2017-08-11
|
* Core should be 4.0.5Gravatar Paul Beusterien2017-08-08
|
* Update Core to 4.1.0 and Community to 0.1.0 (#185)Gravatar Paul Beusterien2017-08-08
|
* Wrong Bundle ID should be a visible error (#182)Gravatar Paul Beusterien2017-08-08
|
* Adds Swift stub calls for Auth 4.1.0 new features to verify the API. (#181)Gravatar Xiangtian Dai2017-08-07
| | | | Also fixes colon alignment in a header.
* Adding ChangeLogs for Storage and Database (#184)Gravatar Sebastian Schmidt2017-08-07
|
* Ensure auto-connect logic is always in main thread (#183)Gravatar Riz2017-08-07
| | | This addresses #125, where a developer is setting `.shouldEstablishDirectChannel` in a background thread, and getting a main thread sanitization issue in Xcode 9.
* update APNs Token error (#180)Gravatar Zsika Phillip2017-08-05
| | | | | | | | | | | | * update APNs Token error * update message * updates error message to be more readable * fixes mis-spelt word * fixes missspelled word
* Fixes an incorrect assumption of Auth server error message. (#179)Gravatar Xiangtian Dai2017-08-04
| | | Also allows the Auth sample app to test all combination of `handleCodeInApp` and continue URL.
* Move Auth notification constant into Core. (#155)Gravatar Ryan Wilson2017-08-04
| | | | | | | | | | | | * Move Auth notification constant into Core. SDKs that want to listen for the internal Auth notifications needed to copy the notification strings to their own SDK instead of relying on Auth's definition in order to avoid a dependency on Auth. By moving them to Core, SDKs can use the constants without taking on another dependency. * Remove Auth stub, add app instance to notification.
* Adds the missing FIRActionCodeOperationRecoverEmail. (#177)Gravatar Xiangtian Dai2017-08-04
| | | Also allow in-app action code handling to cancel and leave the code in pasteboard.
* Action code fixes and improvements (#176)Gravatar Xiangtian Dai2017-08-03
| | | | | | | | | | * Makes Auth sample in-app password reset work on iOS 8-. * Sets default iOS bundle ID for action code settings. * Adds an entry in the Auth sample app to verify email in app. * Removes '-' from 'in-app' to be consistent with other messages in the Auth sample app.
* Add FIR_SWIFT_NAME for ActionCodeSettings. (#173)Gravatar Ryan Wilson2017-08-02
|
* Removes trailing whitespace characters from source files. (#169)Gravatar Xiangtian Dai2017-08-02
|
* Result of clang-format with AllowShortFunctionsOnASingleLine: NoneGravatar Marek Gilbert2017-08-02
|
* Formatting updates based on the latest clang-formatGravatar Marek Gilbert2017-08-02
| | | | clang-format version 5.0.0 (tags/google/stable/2017-06-22)
* Disable clang-format around multi-label NS_SWIFT_NAMESGravatar Marek Gilbert2017-08-02
| | | | | Otherwise clang-format inserts a linebreak before the last colon which, in addition to being ugly, breaks the resulting swift interface.