Skip to content

Commit 9108a33

Browse files
authored
Updates Auth ChangeLog for the next release. (#216)
Also moves an unused public method into private header.
1 parent b1c231d commit 9108a33

File tree

3 files changed

+15
-12
lines changed

3 files changed

+15
-12
lines changed

Firebase/Auth/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# v4.1.1
2+
- Improves some method documentation in headers.
3+
14
# v4.1.0
25
- Allows the app to handle continue URL natively, e.g., from password reset
36
email.

Firebase/Auth/Source/FIRAuth_Internal.h

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,18 @@ NS_ASSUME_NONNULL_BEGIN
116116
*/
117117
- (BOOL)signOutByForceWithUserID:(NSString *)userID error:(NSError *_Nullable *_Nullable)error;
118118

119+
/** @fn canHandleURL:
120+
@brief Whether the specific URL is handled by @c FIRAuth .
121+
@param url The URL received by the application delegate from any of the openURL method.
122+
@return Whether or the URL is handled. YES means the URL is for Firebase Auth
123+
so the caller should ignore the URL from further processing, and NO means the
124+
the URL is for the app (or another libaray) so the caller should continue handling
125+
this URL as usual.
126+
@remarks If swizzling is disabled, URLs received by the application delegate must be forwarded
127+
to this method for phone number auth to work.
128+
*/
129+
- (BOOL)canHandleURL:(nonnull NSURL *)url;
130+
119131
@end
120132

121133
NS_ASSUME_NONNULL_END

Firebase/Auth/Source/Public/FIRAuth.h

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -684,18 +684,6 @@ FIR_SWIFT_NAME(Auth)
684684
- (BOOL)canHandleNotification:(NSDictionary *)userInfo;
685685
#endif
686686

687-
/** @fn canHandleURL:
688-
@brief Whether the specific URL is handled by @c FIRAuth .
689-
@param url The URL received by the application delegate from any of the openURL method.
690-
@return Whether or the URL is handled. YES means the URL is for Firebase Auth
691-
so the caller should ignore the URL from further processing, and NO means the
692-
the URL is for the app (or another libaray) so the caller should continue handling
693-
this URL as usual.
694-
@remarks If swizzling is disabled, URLs received by the application delegate must be forwarded
695-
to this method for phone number auth to work.
696-
*/
697-
- (BOOL)canHandleURL:(nonnull NSURL *)url;
698-
699687
@end
700688

701689
NS_ASSUME_NONNULL_END

0 commit comments

Comments
 (0)