Skip to content

Commit 6318278

Browse files
authored
Prepare 11.8.1 (#14425)
1 parent 075679d commit 6318278

File tree

6 files changed

+21
-7
lines changed

6 files changed

+21
-7
lines changed

Firebase.podspec

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'Firebase'
3-
s.version = '11.8.0'
3+
s.version = '11.8.1'
44
s.summary = 'Firebase'
55

66
s.description = <<-DESC
@@ -43,7 +43,7 @@ Simplify your app development, grow your user base, and monetize more effectivel
4343
end
4444

4545
s.subspec 'CoreOnly' do |ss|
46-
ss.dependency 'FirebaseCore', '~> 11.8.0'
46+
ss.dependency 'FirebaseCore', '~> 11.8.1'
4747
ss.source_files = 'CoreOnly/Sources/Firebase.h'
4848
ss.preserve_paths = 'CoreOnly/Sources/module.modulemap'
4949
if ENV['FIREBASE_POD_REPO_FOR_DEV_POD'] then
@@ -110,7 +110,7 @@ Simplify your app development, grow your user base, and monetize more effectivel
110110

111111
s.subspec 'Auth' do |ss|
112112
ss.dependency 'Firebase/CoreOnly'
113-
ss.dependency 'FirebaseAuth', '~> 11.8.0'
113+
ss.dependency 'FirebaseAuth', '~> 11.8.1'
114114
# Standard platforms PLUS watchOS.
115115
ss.ios.deployment_target = '13.0'
116116
ss.osx.deployment_target = '10.15'

FirebaseAuth.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'FirebaseAuth'
3-
s.version = '11.8.0'
3+
s.version = '11.8.1'
44
s.summary = 'Apple platform client for Firebase Authentication'
55

66
s.description = <<-DESC

FirebaseAuth/CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# 11.8.1
2+
- [fixed] Suppress deprecation build warning introduced in 11.8.0.
3+
14
# 11.8.0
25
- [added] Added `ActionCodeSettings.linkDomain` to customize the Firebase Hosting link domain
36
that is used in out-of-band email action flows.

FirebaseAuth/Sources/Swift/Backend/RPC/GetOOBConfirmationCodeRequest.swift

+12-1
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,12 @@ private let kClientType = "clientType"
105105
/// The key for the "recaptchaVersion" value in the request.
106106
private let kRecaptchaVersion = "recaptchaVersion"
107107

108+
protocol SuppressWarning {
109+
var dynamicLinkDomain: String? { get set }
110+
}
111+
112+
extension ActionCodeSettings: SuppressWarning {}
113+
108114
@available(iOS 13, tvOS 13, macOS 10.15, macCatalyst 13, watchOS 7, *)
109115
class GetOOBConfirmationCodeRequest: IdentityToolkitRequest, AuthRPCRequest {
110116
typealias Response = GetOOBConfirmationCodeResponse
@@ -177,7 +183,12 @@ class GetOOBConfirmationCodeRequest: IdentityToolkitRequest, AuthRPCRequest {
177183
androidMinimumVersion = actionCodeSettings?.androidMinimumVersion
178184
androidInstallApp = actionCodeSettings?.androidInstallIfNotAvailable ?? false
179185
handleCodeInApp = actionCodeSettings?.handleCodeInApp ?? false
180-
dynamicLinkDomain = actionCodeSettings?.dynamicLinkDomain
186+
dynamicLinkDomain =
187+
if let actionCodeSettings {
188+
(actionCodeSettings as SuppressWarning).dynamicLinkDomain
189+
} else {
190+
nil
191+
}
181192
linkDomain = actionCodeSettings?.linkDomain
182193

183194
super.init(

FirebaseCore.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'FirebaseCore'
3-
s.version = '11.8.0'
3+
s.version = '11.8.1'
44
s.summary = 'Firebase Core'
55

66
s.description = <<-DESC

Package.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
import class Foundation.ProcessInfo
2020
import PackageDescription
2121

22-
let firebaseVersion = "11.8.0"
22+
let firebaseVersion = "11.8.1"
2323

2424
let package = Package(
2525
name: "Firebase",

0 commit comments

Comments
 (0)