Skip to content

Commit 312f733

Browse files
authored
Add auth emulator support to public API. (#6624)
* Add auth emulator support to public API. * Update changelog.
1 parent 4f7a88b commit 312f733

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

FirebaseAuth/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# Unreleased
22
- [removed] Remove deprecated APIs `dataForKey`,`fetchProvidersForEmail:completion`, `signInAndRetrieveDataWithCredential:completion`, `reauthenticateAndRetrieveDataWithCredential:completion`, `linkAndRetrieveDataWithCredential:completion`. (#6607)
3+
- [added] Add support for the auth emulator. (#6624)
34

45
# v6.9.1
56
- [fixed] Internal source documentation. (#6371)

FirebaseAuth/Sources/Auth/FIRAuth_Internal.h

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -143,11 +143,6 @@ NS_ASSUME_NONNULL_BEGIN
143143
- (FIRAuthDataResultCallback)signInFlowAuthDataResultCallbackByDecoratingCallback:
144144
(nullable FIRAuthDataResultCallback)callback;
145145

146-
/** @fn useEmulatorWithHost:port
147-
@brief Configures Firebase Auth to connect to an emulated host instead of the remote backend.
148-
*/
149-
- (void)useEmulatorWithHost:(NSString *)host port:(NSInteger)port;
150-
151146
@end
152147

153148
/// Logger Service String

FirebaseAuth/Sources/Public/FirebaseAuth/FIRAuth.h

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -806,6 +806,11 @@ NS_SWIFT_NAME(Auth)
806806
*/
807807
- (void)useAppLanguage;
808808

809+
/** @fn useEmulatorWithHost:port
810+
@brief Configures Firebase Auth to connect to an emulated host instead of the remote backend.
811+
*/
812+
- (void)useEmulatorWithHost:(NSString *)host port:(NSInteger)port;
813+
809814
#if TARGET_OS_IOS
810815

811816
/** @fn canHandleURL:

0 commit comments

Comments
 (0)