Skip to content

Commit

Permalink
[v11] Replace Auth worker queue with an actor - checkpoint WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
paulb777 committed Jul 9, 2024
1 parent 20a9ea3 commit c343c61
Show file tree
Hide file tree
Showing 12 changed files with 1,604 additions and 1,374 deletions.
1 change: 1 addition & 0 deletions FirebaseAuth/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
- [added] Introduced the Swift enum `AuthProviderID` for the Auth Provider IDs. (#9236)
- [deprecated] Swift APIs using `String`-typed `productID`s have been deprecated in favor
of newly added API that leverages the `AuthProviderID` enum.
- [fixed] Breaking API: The `email` property in `ActionCodeInfo` is not non-optional.

# 10.21.0
- [fixed] Fixed multifactor resolver to use the correct Auth instance instead of
Expand Down
2 changes: 1 addition & 1 deletion FirebaseAuth/Sources/Swift/ActionCode/ActionCodeInfo.swift
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import Foundation

/// The email address to which the code was sent. The new email address in the case of
/// `ActionCodeOperation.recoverEmail`.
@objc public let email: String?
@objc public let email: String

/// The email that is being recovered in the case of `ActionCodeOperation.recoverEmail`.
@objc public let previousEmail: String?
Expand Down
Loading

0 comments on commit c343c61

Please sign in to comment.