File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed
Sources/Public/FirebaseAuth Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change
1
+ # 10.19.0
2
+ - [ changed] Deprecate ` updateEmail(to email: String) ` and ` fetchSignInMethods(forEmail email: String) ` . (#12081 )
3
+
1
4
# 10.18.0
2
5
- [ fixed] Fix a bug where anonymous account can't be linked with email password credential. (#11911 )
3
6
Original file line number Diff line number Diff line change @@ -397,7 +397,8 @@ NS_SWIFT_NAME(Auth)
397
397
completion:(nullable void (^)(NSArray <NSString *> *_Nullable,
398
398
NSError *_Nullable))completion
399
399
DEPRECATED_MSG_ATTRIBUTE(
400
- " This method returns an empty list when Email Enumeration Protection is enabled." );
400
+ " This method is deprecated and will be removed in a future release. This method returns an "
401
+ " empty list when Email Enumeration Protection is enabled." );
401
402
402
403
/* * @fn signInWithEmail:password:completion:
403
404
@brief Signs in using an email address and password. When [Email Enumeration
Original file line number Diff line number Diff line change @@ -162,8 +162,9 @@ NS_SWIFT_NAME(User)
162
162
*/
163
163
- (void )updateEmail:(NSString *)email
164
164
completion:(nullable void (^)(NSError *_Nullable error))completion
165
- NS_SWIFT_NAME(updateEmail(to:completion:))
166
- DEPRECATED_MSG_ATTRIBUTE(" Use sendEmailVerificationBeforeUpdatingEmail: instead." );
165
+ NS_SWIFT_NAME(updateEmail(to:completion:)) DEPRECATED_MSG_ATTRIBUTE(
166
+ " This method is deprecated and will be removed in a future release. Use "
167
+ " sendEmailVerification(beforeUpdatingEmail email: String) instead." );
167
168
168
169
/* * @fn updatePassword:completion:
169
170
@brief Updates the password for the user. On success, the cached user profile data is updated.
You can’t perform that action at this time.
0 commit comments