Skip to content

Commit

Permalink
[auth] Address Xcode 16.2 concurrency compile time issues (#14279)
Browse files Browse the repository at this point in the history
  • Loading branch information
paulb777 authored Dec 20, 2024
1 parent dd8b502 commit afd83c3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions FirebaseAuth/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
- [fixed] Fix Multi-factor session crash on second Firebase app. (#14238)
- [fixed] Updated most decoders to be consistent with Firebase 10's behavior
for decoding `nil` values. (#14212)
- [fixed] Address Xcode 16.2 concurrency compile time issues. (#14279)

# 11.6.0
- [added] Added reCAPTCHA Enterprise support for app verification during phone
Expand Down
1 change: 1 addition & 0 deletions FirebaseAuth/Sources/Swift/Auth/Auth.swift
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,7 @@ extension Auth: AuthInterop {
///
/// This class is thread-safe.
@available(iOS 13, tvOS 13, macOS 10.15, macCatalyst 13, watchOS 7, *)
@preconcurrency
@objc(FIRAuth) open class Auth: NSObject {
/// Gets the auth object for the default Firebase app.
///
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@

/// A class represents a credential that proves the identity of the app.
@available(iOS 13, tvOS 13, macOS 10.15, macCatalyst 13, watchOS 7, *)
@preconcurrency
class AuthNotificationManager {
/// The key to locate payload data in the remote notification.
private let kNotificationDataKey = "com.google.firebase.auth"
Expand Down

0 comments on commit afd83c3

Please sign in to comment.