Skip to content

Commit

Permalink
Update iOS dependencies - Mon Sep 16 2024 (#1646)
Browse files Browse the repository at this point in the history
### iOS

- Firebase/Analytics → 11.2.0
- Firebase/AppCheck → 11.2.0
- Firebase/Auth → 11.2.0
- Firebase/Core → 11.2.0
- Firebase/CoreOnly → 11.2.0
- Firebase/Crashlytics → 11.2.0
- Firebase/Database → 11.2.0
- Firebase/DynamicLinks → 11.2.0
- Firebase/Firestore → 11.2.0
- Firebase/Functions → 11.2.0
- Firebase/Installations → 11.2.0
- Firebase/Messaging → 11.2.0
- Firebase/RemoteConfig → 11.2.0
- Firebase/Storage → 11.2.0

> Created by [Update Android and iOS dependencies workflow](https://github.com/firebase/firebase-cpp-sdk/actions/runs/10889666385).

Co-authored-by: firebase-workflow-trigger-bot <firebase-workflow-trigger-bot@google.com>
  • Loading branch information
firebase-workflow-trigger[bot] and firebase-workflow-trigger-bot authored Sep 16, 2024
1 parent 07c2184 commit 06ab3ec
Show file tree
Hide file tree
Showing 34 changed files with 126 additions and 122 deletions.
4 changes: 2 additions & 2 deletions analytics/integration_test/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ use_frameworks! :linkage => :static

target 'integration_test' do
platform :ios, '13.0'
pod 'Firebase/Analytics', '11.0.0'
pod 'Firebase/Analytics', '11.2.0'
end

target 'integration_test_tvos' do
platform :tvos, '13.0'
pod 'Firebase/Analytics', '11.0.0'
pod 'Firebase/Analytics', '11.2.0'
end

post_install do |installer|
Expand Down
2 changes: 1 addition & 1 deletion analytics/ios_headers/FIREventNames.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright 2024 Google LLC

// Copied from Firebase Analytics iOS SDK 11.0.0.
// Copied from Firebase Analytics iOS SDK 11.2.0.

/// @file FIREventNames.h
///
Expand Down
2 changes: 1 addition & 1 deletion analytics/ios_headers/FIRParameterNames.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright 2024 Google LLC

// Copied from Firebase Analytics iOS SDK 11.0.0.
// Copied from Firebase Analytics iOS SDK 11.2.0.

/// @file FIRParameterNames.h
///
Expand Down
2 changes: 1 addition & 1 deletion analytics/ios_headers/FIRUserPropertyNames.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright 2024 Google LLC

// Copied from Firebase Analytics iOS SDK 11.0.0.
// Copied from Firebase Analytics iOS SDK 11.2.0.

/// @file FIRUserPropertyNames.h
///
Expand Down
2 changes: 1 addition & 1 deletion app/integration_test/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ platform :ios, '13.0'
use_frameworks! :linkage => :static

target 'integration_test' do
pod 'Firebase/Analytics', '11.0.0'
pod 'Firebase/Analytics', '11.2.0'
end

post_install do |installer|
Expand Down
20 changes: 10 additions & 10 deletions app_check/integration_test/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,20 @@ use_frameworks! :linkage => :static

target 'integration_test' do
platform :ios, '13.0'
pod 'Firebase/AppCheck', '11.0.0'
pod 'Firebase/Database', '11.0.0'
pod 'Firebase/Auth', '11.0.0'
pod 'Firebase/Storage', '11.0.0'
pod 'Firebase/Functions', '11.0.0'
pod 'Firebase/AppCheck', '11.2.0'
pod 'Firebase/Database', '11.2.0'
pod 'Firebase/Auth', '11.2.0'
pod 'Firebase/Storage', '11.2.0'
pod 'Firebase/Functions', '11.2.0'
end

target 'integration_test_tvos' do
platform :tvos, '13.0'
pod 'Firebase/AppCheck', '11.0.0'
pod 'Firebase/Database', '11.0.0'
pod 'Firebase/Auth', '11.0.0'
pod 'Firebase/Storage', '11.0.0'
pod 'Firebase/Functions', '11.0.0'
pod 'Firebase/AppCheck', '11.2.0'
pod 'Firebase/Database', '11.2.0'
pod 'Firebase/Auth', '11.2.0'
pod 'Firebase/Storage', '11.2.0'
pod 'Firebase/Functions', '11.2.0'
end

post_install do |installer|
Expand Down
4 changes: 2 additions & 2 deletions auth/integration_test/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ use_frameworks! :linkage => :static

target 'integration_test' do
platform :ios, '13.0'
pod 'Firebase/Auth', '11.0.0'
pod 'Firebase/Auth', '11.2.0'
end

target 'integration_test_tvos' do
platform :tvos, '13.0'
pod 'Firebase/Auth', '11.0.0'
pod 'Firebase/Auth', '11.2.0'
end

post_install do |installer|
Expand Down
2 changes: 1 addition & 1 deletion cmake/external/firestore.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ endif()

# If the format of the line below changes, then be sure to update
# https://github.com/firebase/firebase-cpp-sdk/blob/fd054fa016/.github/workflows/update-dependencies.yml#L81
set(version CocoaPods-11.0.0)
set(version CocoaPods-11.2.0)

function(GetReleasedDep)
message("Getting released firebase-ios-sdk @ ${version}")
Expand Down
8 changes: 4 additions & 4 deletions database/integration_test/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ use_frameworks! :linkage => :static

target 'integration_test' do
platform :ios, '13.0'
pod 'Firebase/Database', '11.0.0'
pod 'Firebase/Auth', '11.0.0'
pod 'Firebase/Database', '11.2.0'
pod 'Firebase/Auth', '11.2.0'
end

target 'integration_test_tvos' do
platform :tvos, '13.0'
pod 'Firebase/Database', '11.0.0'
pod 'Firebase/Auth', '11.0.0'
pod 'Firebase/Database', '11.2.0'
pod 'Firebase/Auth', '11.2.0'
end

post_install do |installer|
Expand Down
2 changes: 1 addition & 1 deletion dynamic_links/integration_test/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use_frameworks! :linkage => :static

target 'integration_test' do
platform :ios, '13.0'
pod 'Firebase/DynamicLinks', '11.0.0'
pod 'Firebase/DynamicLinks', '11.2.0'
end

post_install do |installer|
Expand Down
8 changes: 4 additions & 4 deletions firestore/integration_test/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ use_frameworks! :linkage => :static

target 'integration_test' do
platform :ios, '13.0'
pod 'Firebase/Firestore', '11.0.0'
pod 'Firebase/Auth', '11.0.0'
pod 'Firebase/Firestore', '11.2.0'
pod 'Firebase/Auth', '11.2.0'
end

target 'integration_test_tvos' do
platform :tvos, '13.0'
pod 'Firebase/Firestore', '11.0.0'
pod 'Firebase/Auth', '11.0.0'
pod 'Firebase/Firestore', '11.2.0'
pod 'Firebase/Auth', '11.2.0'
end

post_install do |installer|
Expand Down
8 changes: 4 additions & 4 deletions firestore/integration_test_internal/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ use_frameworks! :linkage => :static

target 'integration_test' do
platform :ios, '13.0'
pod 'Firebase/Firestore', '11.0.0'
pod 'Firebase/Auth', '11.0.0'
pod 'Firebase/Firestore', '11.2.0'
pod 'Firebase/Auth', '11.2.0'
end

target 'integration_test_tvos' do
platform :tvos, '13.0'
pod 'Firebase/Firestore', '11.0.0'
pod 'Firebase/Auth', '11.0.0'
pod 'Firebase/Firestore', '11.2.0'
pod 'Firebase/Auth', '11.2.0'
end

post_install do |installer|
Expand Down
8 changes: 4 additions & 4 deletions functions/integration_test/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ use_frameworks! :linkage => :static

target 'integration_test' do
platform :ios, '13.0'
pod 'Firebase/Functions', '11.0.0'
pod 'Firebase/Auth', '11.0.0'
pod 'Firebase/Functions', '11.2.0'
pod 'Firebase/Auth', '11.2.0'
end

target 'integration_test_tvos' do
platform :tvos, '13.0'
pod 'Firebase/Functions', '11.0.0'
pod 'Firebase/Auth', '11.0.0'
pod 'Firebase/Functions', '11.2.0'
pod 'Firebase/Auth', '11.2.0'
end

post_install do |installer|
Expand Down
2 changes: 1 addition & 1 deletion gma/integration_test/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use_frameworks! :linkage => :static

target 'integration_test' do
platform :ios, '13.0'
pod 'Firebase/CoreOnly', '11.0.0'
pod 'Firebase/CoreOnly', '11.2.0'
pod 'Google-Mobile-Ads-SDK', '11.2.0'
pod 'GoogleUserMessagingPlatform', '2.3.0'
end
Expand Down
4 changes: 2 additions & 2 deletions installations/integration_test/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ use_frameworks! :linkage => :static

target 'integration_test' do
platform :ios, '13.0'
pod 'Firebase/Analytics', '11.0.0'
pod 'Firebase/Installations', '11.0.0'
pod 'Firebase/Analytics', '11.2.0'
pod 'Firebase/Installations', '11.2.0'
end

post_install do |installer|
Expand Down
26 changes: 13 additions & 13 deletions ios_pod/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,22 @@ platform :ios, '13.0'
use_frameworks!

target 'GetPods' do
pod 'Firebase/Core', '11.0.0'
pod 'Firebase/Core', '11.2.0'

pod 'Google-Mobile-Ads-SDK', '11.2.0'
pod 'GoogleUserMessagingPlatform', '2.3.0'
pod 'Firebase/Analytics', '11.0.0'
pod 'Firebase/AppCheck', '11.0.0'
pod 'Firebase/Auth', '11.0.0'
pod 'Firebase/Crashlytics', '11.0.0'
pod 'Firebase/Database', '11.0.0'
pod 'Firebase/DynamicLinks', '11.0.0'
pod 'Firebase/Firestore', '11.0.0'
pod 'Firebase/Functions', '11.0.0'
pod 'Firebase/Installations', '11.0.0'
pod 'Firebase/Messaging', '11.0.0'
pod 'Firebase/RemoteConfig', '11.0.0'
pod 'Firebase/Storage', '11.0.0'
pod 'Firebase/Analytics', '11.2.0'
pod 'Firebase/AppCheck', '11.2.0'
pod 'Firebase/Auth', '11.2.0'
pod 'Firebase/Crashlytics', '11.2.0'
pod 'Firebase/Database', '11.2.0'
pod 'Firebase/DynamicLinks', '11.2.0'
pod 'Firebase/Firestore', '11.2.0'
pod 'Firebase/Functions', '11.2.0'
pod 'Firebase/Installations', '11.2.0'
pod 'Firebase/Messaging', '11.2.0'
pod 'Firebase/RemoteConfig', '11.2.0'
pod 'Firebase/Storage', '11.2.0'

end

Expand Down
4 changes: 2 additions & 2 deletions ios_pod/swift_headers/FirebaseAnalytics-Swift.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#if 0
#elif defined(__arm64__) && __arm64__
// Copyright 2024 Google LLC
// Copied from Firebase iOS SDK 11.0.0.
// Copied from Firebase iOS SDK 11.2.0.

// Generated by Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56
// clang-1500.1.0.2.5)
Expand Down Expand Up @@ -338,7 +338,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));

#elif defined(__x86_64__) && __x86_64__
// Copyright 2024 Google LLC
// Copied from Firebase iOS SDK 11.0.0.
// Copied from Firebase iOS SDK 11.2.0.

// Generated by Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56
// clang-1500.1.0.2.5)
Expand Down
8 changes: 6 additions & 2 deletions ios_pod/swift_headers/FirebaseAuth-Swift.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#if 0
#elif defined(__arm64__) && __arm64__
// Copyright 2024 Google LLC
// Copied from Firebase iOS SDK 11.0.0.
// Copied from Firebase iOS SDK 11.2.0.

// Generated by Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56
// clang-1500.1.0.2.5)
Expand Down Expand Up @@ -1540,6 +1540,8 @@ typedef SWIFT_ENUM_NAMED(NSInteger, FIRAuthErrorCode, "AuthErrorCode", open){
/// describing which step of the JWT parsing process failed.
FIRAuthErrorCodeMalformedJWT = 18000,
};
static NSString *_Nonnull const FIRAuthErrorCodeDomain =
@"FirebaseAuth.AuthErrorCode";

/// Error Codes common to all API Methods:
SWIFT_CLASS_NAMED("AuthErrors")
Expand Down Expand Up @@ -3029,7 +3031,7 @@ SWIFT_AVAILABILITY(watchos, introduced = 7)

#elif defined(__x86_64__) && __x86_64__
// Copyright 2024 Google LLC
// Copied from Firebase iOS SDK 11.0.0.
// Copied from Firebase iOS SDK 11.2.0.

// Generated by Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56
// clang-1500.1.0.2.5)
Expand Down Expand Up @@ -4568,6 +4570,8 @@ typedef SWIFT_ENUM_NAMED(NSInteger, FIRAuthErrorCode, "AuthErrorCode", open){
/// describing which step of the JWT parsing process failed.
FIRAuthErrorCodeMalformedJWT = 18000,
};
static NSString *_Nonnull const FIRAuthErrorCodeDomain =
@"FirebaseAuth.AuthErrorCode";

/// Error Codes common to all API Methods:
SWIFT_CLASS_NAMED("AuthErrors")
Expand Down
4 changes: 2 additions & 2 deletions ios_pod/swift_headers/FirebaseCoreInternal-Swift.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#if 0
#elif defined(__arm64__) && __arm64__
// Copyright 2024 Google LLC
// Copied from Firebase iOS SDK 11.0.0.
// Copied from Firebase iOS SDK 11.2.0.

// Generated by Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56
// clang-1500.1.0.2.5)
Expand Down Expand Up @@ -394,7 +394,7 @@ SWIFT_CLASS_NAMED("_ObjC_HeartbeatsPayload")

#elif defined(__x86_64__) && __x86_64__
// Copyright 2024 Google LLC
// Copied from Firebase iOS SDK 11.0.0.
// Copied from Firebase iOS SDK 11.2.0.

// Generated by Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56
// clang-1500.1.0.2.5)
Expand Down
4 changes: 2 additions & 2 deletions ios_pod/swift_headers/FirebaseDatabase-Swift.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#if 0
#elif defined(__arm64__) && __arm64__
// Copyright 2024 Google LLC
// Copied from Firebase iOS SDK 11.0.0.
// Copied from Firebase iOS SDK 11.2.0.

// Generated by Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56
// clang-1500.1.0.2.5)
Expand Down Expand Up @@ -338,7 +338,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));

#elif defined(__x86_64__) && __x86_64__
// Copyright 2024 Google LLC
// Copied from Firebase iOS SDK 11.0.0.
// Copied from Firebase iOS SDK 11.2.0.

// Generated by Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56
// clang-1500.1.0.2.5)
Expand Down
4 changes: 2 additions & 2 deletions ios_pod/swift_headers/FirebaseFirestore-Swift.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#if 0
#elif defined(__arm64__) && __arm64__
// Copyright 2024 Google LLC
// Copied from Firebase iOS SDK 11.0.0.
// Copied from Firebase iOS SDK 11.2.0.

// Generated by Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56
// clang-1500.1.0.2.5)
Expand Down Expand Up @@ -346,7 +346,7 @@ SWIFT_CLASS_PROPERTY(@property(nonatomic, class, readonly,

#elif defined(__x86_64__) && __x86_64__
// Copyright 2024 Google LLC
// Copied from Firebase iOS SDK 11.0.0.
// Copied from Firebase iOS SDK 11.2.0.

// Generated by Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56
// clang-1500.1.0.2.5)
Expand Down
4 changes: 2 additions & 2 deletions ios_pod/swift_headers/FirebaseFunctions-Swift.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#if 0
#elif defined(__arm64__) && __arm64__
// Copyright 2024 Google LLC
// Copied from Firebase iOS SDK 11.0.0.
// Copied from Firebase iOS SDK 11.2.0.

// Generated by Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56
// clang-1500.1.0.2.5)
Expand Down Expand Up @@ -619,7 +619,7 @@ SWIFT_CLASS_NAMED("HTTPSCallableResult")

#elif defined(__x86_64__) && __x86_64__
// Copyright 2024 Google LLC
// Copied from Firebase iOS SDK 11.0.0.
// Copied from Firebase iOS SDK 11.2.0.

// Generated by Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56
// clang-1500.1.0.2.5)
Expand Down
4 changes: 2 additions & 2 deletions ios_pod/swift_headers/FirebaseInAppMessaging-Swift.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#if 0
#elif defined(__arm64__) && __arm64__
// Copyright 2024 Google LLC
// Copied from Firebase iOS SDK 11.0.0.
// Copied from Firebase iOS SDK 11.2.0.

// Generated by Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56
// clang-1500.1.0.2.5)
Expand Down Expand Up @@ -337,7 +337,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));

#elif defined(__x86_64__) && __x86_64__
// Copyright 2024 Google LLC
// Copied from Firebase iOS SDK 11.0.0.
// Copied from Firebase iOS SDK 11.2.0.

// Generated by Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56
// clang-1500.1.0.2.5)
Expand Down
Loading

0 comments on commit 06ab3ec

Please sign in to comment.