diff --git a/.github/workflows/integration_tests.yml b/.github/workflows/integration_tests.yml index 9fcfb43c4c..24b1ed7536 100644 --- a/.github/workflows/integration_tests.yml +++ b/.github/workflows/integration_tests.yml @@ -46,7 +46,7 @@ env: triggerLabelPrefix: "tests-requested: " triggerLabelFull: "tests-requested: full" triggerLabelQuick: "tests-requested: quick" - pythonVersion: '3.7' + pythonVersion: '3.8' xcodeVersion: '14.1' artifactRetentionDays: 2 GITHUB_TOKEN: ${{ github.token }} diff --git a/analytics/integration_test/Podfile b/analytics/integration_test/Podfile index 8163a068ed..da5b4154bf 100644 --- a/analytics/integration_test/Podfile +++ b/analytics/integration_test/Podfile @@ -5,12 +5,12 @@ use_frameworks! :linkage => :static target 'integration_test' do platform :ios, '11.0' - pod 'Firebase/Analytics', '10.17.0' + pod 'Firebase/Analytics', '10.19.0' end target 'integration_test_tvos' do platform :tvos, '12.0' - pod 'Firebase/Analytics', '10.17.0' + pod 'Firebase/Analytics', '10.19.0' end post_install do |installer| diff --git a/analytics/ios_headers/FIREventNames.h b/analytics/ios_headers/FIREventNames.h index 91f3bcdec4..46bc98adf8 100644 --- a/analytics/ios_headers/FIREventNames.h +++ b/analytics/ios_headers/FIREventNames.h @@ -1,6 +1,6 @@ // Copyright 2023 Google LLC -// Copied from Firebase Analytics iOS SDK 10.16.0. +// Copied from Firebase Analytics iOS SDK 10.19.0. /// @file FIREventNames.h /// diff --git a/analytics/ios_headers/FIRParameterNames.h b/analytics/ios_headers/FIRParameterNames.h index 00f499d091..96960437c6 100644 --- a/analytics/ios_headers/FIRParameterNames.h +++ b/analytics/ios_headers/FIRParameterNames.h @@ -1,6 +1,6 @@ // Copyright 2023 Google LLC -// Copied from Firebase Analytics iOS SDK 10.16.0. +// Copied from Firebase Analytics iOS SDK 10.19.0. /// @file FIRParameterNames.h /// diff --git a/analytics/ios_headers/FIRUserPropertyNames.h b/analytics/ios_headers/FIRUserPropertyNames.h index 4936e730fa..916a75f606 100644 --- a/analytics/ios_headers/FIRUserPropertyNames.h +++ b/analytics/ios_headers/FIRUserPropertyNames.h @@ -1,6 +1,6 @@ // Copyright 2023 Google LLC -// Copied from Firebase Analytics iOS SDK 10.16.0. +// Copied from Firebase Analytics iOS SDK 10.19.0. /// @file FIRUserPropertyNames.h /// diff --git a/app/integration_test/Podfile b/app/integration_test/Podfile index 519c728daa..0d98a2e0fa 100644 --- a/app/integration_test/Podfile +++ b/app/integration_test/Podfile @@ -4,7 +4,7 @@ platform :ios, '11.0' use_frameworks! :linkage => :static target 'integration_test' do - pod 'Firebase/Analytics', '10.17.0' + pod 'Firebase/Analytics', '10.19.0' end post_install do |installer| diff --git a/app_check/integration_test/Podfile b/app_check/integration_test/Podfile index 9bf851ba63..9e969af032 100644 --- a/app_check/integration_test/Podfile +++ b/app_check/integration_test/Podfile @@ -4,20 +4,20 @@ use_frameworks! :linkage => :static target 'integration_test' do platform :ios, '11.0' - pod 'Firebase/AppCheck', '10.17.0' - pod 'Firebase/Database', '10.17.0' - pod 'Firebase/Auth', '10.17.0' - pod 'Firebase/Storage', '10.17.0' - pod 'Firebase/Functions', '10.17.0' + pod 'Firebase/AppCheck', '10.19.0' + pod 'Firebase/Database', '10.19.0' + pod 'Firebase/Auth', '10.19.0' + pod 'Firebase/Storage', '10.19.0' + pod 'Firebase/Functions', '10.19.0' end target 'integration_test_tvos' do platform :tvos, '12.0' - pod 'Firebase/AppCheck', '10.17.0' - pod 'Firebase/Database', '10.17.0' - pod 'Firebase/Auth', '10.17.0' - pod 'Firebase/Storage', '10.17.0' - pod 'Firebase/Functions', '10.17.0' + pod 'Firebase/AppCheck', '10.19.0' + pod 'Firebase/Database', '10.19.0' + pod 'Firebase/Auth', '10.19.0' + pod 'Firebase/Storage', '10.19.0' + pod 'Firebase/Functions', '10.19.0' end post_install do |installer| diff --git a/app_check/src/ios/debug_provider_ios.mm b/app_check/src/ios/debug_provider_ios.mm index ba5c809f15..bcbb289cc2 100644 --- a/app_check/src/ios/debug_provider_ios.mm +++ b/app_check/src/ios/debug_provider_ios.mm @@ -28,8 +28,9 @@ namespace app_check { namespace internal { -// The key used by the iOS SDK to get the debug token from. +// The keys used by the iOS SDK to get the debug token from. static NSString* const kDebugTokenUserDefaultsKey = @"FIRAAppCheckDebugToken"; +static NSString* const kGACDebugTokenUserDefaultsKey = @"GACAppCheckDebugToken"; class DebugAppCheckProvider : public AppCheckProvider { public: @@ -92,6 +93,8 @@ virtual void GetToken( // Write to the same location that the iOS SDK will read from. NSString* token_string = (!token.empty()) ? util::StringToNSString(token) : nullptr; [[NSUserDefaults standardUserDefaults] setObject:token_string forKey:kDebugTokenUserDefaultsKey]; + [[NSUserDefaults standardUserDefaults] setObject:token_string + forKey:kGACDebugTokenUserDefaultsKey]; } } // namespace internal diff --git a/auth/integration_test/Podfile b/auth/integration_test/Podfile index e9a16d9e8d..43c26aa8fb 100644 --- a/auth/integration_test/Podfile +++ b/auth/integration_test/Podfile @@ -4,12 +4,12 @@ use_frameworks! :linkage => :static target 'integration_test' do platform :ios, '11.0' - pod 'Firebase/Auth', '10.17.0' + pod 'Firebase/Auth', '10.19.0' end target 'integration_test_tvos' do platform :tvos, '12.0' - pod 'Firebase/Auth', '10.17.0' + pod 'Firebase/Auth', '10.19.0' end post_install do |installer| diff --git a/cmake/external/firestore.cmake b/cmake/external/firestore.cmake index 20fa23e715..7ecd4d5955 100644 --- a/cmake/external/firestore.cmake +++ b/cmake/external/firestore.cmake @@ -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-10.17.0) +set(version CocoaPods-10.19.0) function(GetReleasedDep) message("Getting released firebase-ios-sdk @ ${version}") diff --git a/cpp_sdk_version.json b/cpp_sdk_version.json index e0e3d8498c..305dd85002 100644 --- a/cpp_sdk_version.json +++ b/cpp_sdk_version.json @@ -1,5 +1,5 @@ { - "released": "11.6.0", - "stable": "11.6.0", - "head": "11.6.0" + "released": "11.7.0", + "stable": "11.7.0", + "head": "11.7.0" } diff --git a/database/integration_test/Podfile b/database/integration_test/Podfile index d1cb7d8762..82fd2cf6d7 100644 --- a/database/integration_test/Podfile +++ b/database/integration_test/Podfile @@ -4,14 +4,14 @@ use_frameworks! :linkage => :static target 'integration_test' do platform :ios, '11.0' - pod 'Firebase/Database', '10.17.0' - pod 'Firebase/Auth', '10.17.0' + pod 'Firebase/Database', '10.19.0' + pod 'Firebase/Auth', '10.19.0' end target 'integration_test_tvos' do platform :tvos, '12.0' - pod 'Firebase/Database', '10.17.0' - pod 'Firebase/Auth', '10.17.0' + pod 'Firebase/Database', '10.19.0' + pod 'Firebase/Auth', '10.19.0' end post_install do |installer| diff --git a/dynamic_links/integration_test/Podfile b/dynamic_links/integration_test/Podfile index 432a190a78..9e36fd109a 100644 --- a/dynamic_links/integration_test/Podfile +++ b/dynamic_links/integration_test/Podfile @@ -4,7 +4,7 @@ platform :ios, '11.0' use_frameworks! :linkage => :static target 'integration_test' do - pod 'Firebase/DynamicLinks', '10.17.0' + pod 'Firebase/DynamicLinks', '10.19.0' end post_install do |installer| diff --git a/firestore/integration_test/Podfile b/firestore/integration_test/Podfile index 628ca18bf6..4ed336a9be 100644 --- a/firestore/integration_test/Podfile +++ b/firestore/integration_test/Podfile @@ -4,14 +4,14 @@ use_frameworks! :linkage => :static target 'integration_test' do platform :ios, '11.0' - pod 'Firebase/Firestore', '10.17.0' - pod 'Firebase/Auth', '10.17.0' + pod 'Firebase/Firestore', '10.19.0' + pod 'Firebase/Auth', '10.19.0' end target 'integration_test_tvos' do platform :tvos, '12.0' - pod 'Firebase/Firestore', '10.17.0' - pod 'Firebase/Auth', '10.17.0' + pod 'Firebase/Firestore', '10.19.0' + pod 'Firebase/Auth', '10.19.0' end post_install do |installer| diff --git a/firestore/integration_test_internal/Podfile b/firestore/integration_test_internal/Podfile index 0713979881..d6589281fc 100644 --- a/firestore/integration_test_internal/Podfile +++ b/firestore/integration_test_internal/Podfile @@ -4,14 +4,14 @@ use_frameworks! :linkage => :static target 'integration_test' do platform :ios, '11.0' - pod 'Firebase/Firestore', '10.17.0' - pod 'Firebase/Auth', '10.17.0' + pod 'Firebase/Firestore', '10.19.0' + pod 'Firebase/Auth', '10.19.0' end target 'integration_test_tvos' do platform :tvos, '12.0' - pod 'Firebase/Firestore', '10.17.0' - pod 'Firebase/Auth', '10.17.0' + pod 'Firebase/Firestore', '10.19.0' + pod 'Firebase/Auth', '10.19.0' end post_install do |installer| diff --git a/functions/integration_test/Podfile b/functions/integration_test/Podfile index 873927b9e4..4006dc88f5 100644 --- a/functions/integration_test/Podfile +++ b/functions/integration_test/Podfile @@ -4,14 +4,14 @@ use_frameworks! :linkage => :static target 'integration_test' do platform :ios, '11.0' - pod 'Firebase/Functions', '10.17.0' - pod 'Firebase/Auth', '10.17.0' + pod 'Firebase/Functions', '10.19.0' + pod 'Firebase/Auth', '10.19.0' end target 'integration_test_tvos' do platform :tvos, '12.0' - pod 'Firebase/Functions', '10.17.0' - pod 'Firebase/Auth', '10.17.0' + pod 'Firebase/Functions', '10.19.0' + pod 'Firebase/Auth', '10.19.0' end post_install do |installer| diff --git a/gma/integration_test/Podfile b/gma/integration_test/Podfile index bd24228045..50ba64aa8d 100644 --- a/gma/integration_test/Podfile +++ b/gma/integration_test/Podfile @@ -4,8 +4,8 @@ platform :ios, '11.0' use_frameworks! :linkage => :static target 'integration_test' do - pod 'Firebase/CoreOnly', '10.17.0' - pod 'Google-Mobile-Ads-SDK', '10.12.0' + pod 'Firebase/CoreOnly', '10.19.0' + pod 'Google-Mobile-Ads-SDK', '10.14.0' pod 'GoogleUserMessagingPlatform', '2.1.0' end diff --git a/installations/integration_test/Podfile b/installations/integration_test/Podfile index 7c78ccb408..af888cc2e6 100644 --- a/installations/integration_test/Podfile +++ b/installations/integration_test/Podfile @@ -4,8 +4,8 @@ platform :ios, '11.0' use_frameworks! :linkage => :static target 'integration_test' do - pod 'Firebase/Analytics', '10.17.0' - pod 'Firebase/Installations', '10.17.0' + pod 'Firebase/Analytics', '10.19.0' + pod 'Firebase/Installations', '10.19.0' end post_install do |installer| diff --git a/ios_pod/Podfile b/ios_pod/Podfile index 9e1196fc68..2cf73fd24f 100644 --- a/ios_pod/Podfile +++ b/ios_pod/Podfile @@ -3,22 +3,22 @@ platform :ios, '11.0' use_frameworks! target 'GetPods' do - pod 'Firebase/Core', '10.17.0' + pod 'Firebase/Core', '10.19.0' - pod 'Google-Mobile-Ads-SDK', '10.12.0' + pod 'Google-Mobile-Ads-SDK', '10.14.0' pod 'GoogleUserMessagingPlatform', '2.1.0' - pod 'Firebase/Analytics', '10.17.0' - pod 'Firebase/AppCheck', '10.17.0' - pod 'Firebase/Auth', '10.17.0' - pod 'Firebase/Crashlytics', '10.17.0' - pod 'Firebase/Database', '10.17.0' - pod 'Firebase/DynamicLinks', '10.17.0' - pod 'Firebase/Firestore', '10.17.0' - pod 'Firebase/Functions', '10.17.0' - pod 'Firebase/Installations', '10.17.0' - pod 'Firebase/Messaging', '10.17.0' - pod 'Firebase/RemoteConfig', '10.17.0' - pod 'Firebase/Storage', '10.17.0' + pod 'Firebase/Analytics', '10.19.0' + pod 'Firebase/AppCheck', '10.19.0' + pod 'Firebase/Auth', '10.19.0' + pod 'Firebase/Crashlytics', '10.19.0' + pod 'Firebase/Database', '10.19.0' + pod 'Firebase/DynamicLinks', '10.19.0' + pod 'Firebase/Firestore', '10.19.0' + pod 'Firebase/Functions', '10.19.0' + pod 'Firebase/Installations', '10.19.0' + pod 'Firebase/Messaging', '10.19.0' + pod 'Firebase/RemoteConfig', '10.19.0' + pod 'Firebase/Storage', '10.19.0' end diff --git a/ios_pod/swift_headers/FirebaseAnalytics-Swift.h b/ios_pod/swift_headers/FirebaseAnalytics-Swift.h index 6c9bb08d4d..5f11425a55 100644 --- a/ios_pod/swift_headers/FirebaseAnalytics-Swift.h +++ b/ios_pod/swift_headers/FirebaseAnalytics-Swift.h @@ -1,7 +1,7 @@ #if 0 #elif defined(__arm64__) && __arm64__ // Copyright 2023 Google LLC -// Copied from Firebase iOS SDK 10.17.0. +// Copied from Firebase iOS SDK 10.19.0. // Generated by Apple Swift version 5.7.1 (swiftlang-5.7.1.135.3 // clang-1400.0.29.51) @@ -267,12 +267,12 @@ using UInt = size_t; #if __has_attribute(external_source_symbol) #pragma push_macro("any") #undef any -#pragma clang attribute push( \ - __attribute__((external_source_symbol( \ - language = "Swift", defined_in = "FirebaseAnalytics", \ - generated_declaration))), \ - apply_to = any(function, enum, objc_interface, objc_category, \ - objc_protocol)) +#pragma clang attribute push( \ + __attribute__((external_source_symbol(language = "Swift", \ + defined_in = "FirebaseAnalytics", \ + generated_declaration))), \ + apply_to = \ + any(function, enum, objc_interface, objc_category, objc_protocol)) #pragma pop_macro("any") #endif @@ -289,7 +289,7 @@ using UInt = size_t; #elif defined(__x86_64__) && __x86_64__ // Copyright 2023 Google LLC -// Copied from Firebase iOS SDK 10.17.0. +// Copied from Firebase iOS SDK 10.19.0. // Generated by Apple Swift version 5.7.1 (swiftlang-5.7.1.135.3 // clang-1400.0.29.51) @@ -555,12 +555,12 @@ using UInt = size_t; #if __has_attribute(external_source_symbol) #pragma push_macro("any") #undef any -#pragma clang attribute push( \ - __attribute__((external_source_symbol( \ - language = "Swift", defined_in = "FirebaseAnalytics", \ - generated_declaration))), \ - apply_to = any(function, enum, objc_interface, objc_category, \ - objc_protocol)) +#pragma clang attribute push( \ + __attribute__((external_source_symbol(language = "Swift", \ + defined_in = "FirebaseAnalytics", \ + generated_declaration))), \ + apply_to = \ + any(function, enum, objc_interface, objc_category, objc_protocol)) #pragma pop_macro("any") #endif diff --git a/ios_pod/swift_headers/FirebaseAnalyticsSwift-Swift.h b/ios_pod/swift_headers/FirebaseAnalyticsSwift-Swift.h index f7142f3bc1..315ee3e6c7 100644 --- a/ios_pod/swift_headers/FirebaseAnalyticsSwift-Swift.h +++ b/ios_pod/swift_headers/FirebaseAnalyticsSwift-Swift.h @@ -267,12 +267,12 @@ using UInt = size_t; #if __has_attribute(external_source_symbol) #pragma push_macro("any") #undef any -#pragma clang attribute push( \ - __attribute__((external_source_symbol( \ - language = "Swift", defined_in = "FirebaseAnalyticsSwift", \ - generated_declaration))), \ - apply_to = any(function, enum, objc_interface, objc_category, \ - objc_protocol)) +#pragma clang attribute push( \ + __attribute__((external_source_symbol( \ + language = "Swift", defined_in = "FirebaseAnalyticsSwift", \ + generated_declaration))), \ + apply_to = \ + any(function, enum, objc_interface, objc_category, objc_protocol)) #pragma pop_macro("any") #endif @@ -554,12 +554,12 @@ using UInt = size_t; #if __has_attribute(external_source_symbol) #pragma push_macro("any") #undef any -#pragma clang attribute push( \ - __attribute__((external_source_symbol( \ - language = "Swift", defined_in = "FirebaseAnalyticsSwift", \ - generated_declaration))), \ - apply_to = any(function, enum, objc_interface, objc_category, \ - objc_protocol)) +#pragma clang attribute push( \ + __attribute__((external_source_symbol( \ + language = "Swift", defined_in = "FirebaseAnalyticsSwift", \ + generated_declaration))), \ + apply_to = \ + any(function, enum, objc_interface, objc_category, objc_protocol)) #pragma pop_macro("any") #endif diff --git a/ios_pod/swift_headers/FirebaseCoreInternal-Swift.h b/ios_pod/swift_headers/FirebaseCoreInternal-Swift.h index b478a9bb18..369b8207bb 100644 --- a/ios_pod/swift_headers/FirebaseCoreInternal-Swift.h +++ b/ios_pod/swift_headers/FirebaseCoreInternal-Swift.h @@ -1,7 +1,7 @@ #if 0 #elif defined(__arm64__) && __arm64__ // Copyright 2023 Google LLC -// Copied from Firebase iOS SDK 10.17.0. +// Copied from Firebase iOS SDK 10.19.0. // Generated by Apple Swift version 5.7.1 (swiftlang-5.7.1.135.3 // clang-1400.0.29.51) @@ -268,12 +268,12 @@ using UInt = size_t; #if __has_attribute(external_source_symbol) #pragma push_macro("any") #undef any -#pragma clang attribute push( \ - __attribute__((external_source_symbol( \ - language = "Swift", defined_in = "FirebaseCoreInternal", \ - generated_declaration))), \ - apply_to = any(function, enum, objc_interface, objc_category, \ - objc_protocol)) +#pragma clang attribute push( \ + __attribute__((external_source_symbol(language = "Swift", \ + defined_in = "FirebaseCoreInternal", \ + generated_declaration))), \ + apply_to = \ + any(function, enum, objc_interface, objc_category, objc_protocol)) #pragma pop_macro("any") #endif @@ -345,7 +345,7 @@ SWIFT_CLASS_NAMED("_ObjC_HeartbeatsPayload") #elif defined(__x86_64__) && __x86_64__ // Copyright 2023 Google LLC -// Copied from Firebase iOS SDK 10.17.0. +// Copied from Firebase iOS SDK 10.19.0. // Generated by Apple Swift version 5.7.1 (swiftlang-5.7.1.135.3 // clang-1400.0.29.51) @@ -612,12 +612,12 @@ using UInt = size_t; #if __has_attribute(external_source_symbol) #pragma push_macro("any") #undef any -#pragma clang attribute push( \ - __attribute__((external_source_symbol( \ - language = "Swift", defined_in = "FirebaseCoreInternal", \ - generated_declaration))), \ - apply_to = any(function, enum, objc_interface, objc_category, \ - objc_protocol)) +#pragma clang attribute push( \ + __attribute__((external_source_symbol(language = "Swift", \ + defined_in = "FirebaseCoreInternal", \ + generated_declaration))), \ + apply_to = \ + any(function, enum, objc_interface, objc_category, objc_protocol)) #pragma pop_macro("any") #endif diff --git a/ios_pod/swift_headers/FirebaseDatabase-Swift.h b/ios_pod/swift_headers/FirebaseDatabase-Swift.h index 0f8f0e897a..19127ee884 100644 --- a/ios_pod/swift_headers/FirebaseDatabase-Swift.h +++ b/ios_pod/swift_headers/FirebaseDatabase-Swift.h @@ -1,7 +1,7 @@ #if 0 #elif defined(__arm64__) && __arm64__ // Copyright 2023 Google LLC -// Copied from Firebase iOS SDK 10.17.0. +// Copied from Firebase iOS SDK 10.19.0. // Generated by Apple Swift version 5.7.1 (swiftlang-5.7.1.135.3 // clang-1400.0.29.51) @@ -267,12 +267,12 @@ using UInt = size_t; #if __has_attribute(external_source_symbol) #pragma push_macro("any") #undef any -#pragma clang attribute push( \ - __attribute__((external_source_symbol( \ - language = "Swift", defined_in = "FirebaseDatabase", \ - generated_declaration))), \ - apply_to = any(function, enum, objc_interface, objc_category, \ - objc_protocol)) +#pragma clang attribute push( \ + __attribute__((external_source_symbol(language = "Swift", \ + defined_in = "FirebaseDatabase", \ + generated_declaration))), \ + apply_to = \ + any(function, enum, objc_interface, objc_category, objc_protocol)) #pragma pop_macro("any") #endif @@ -289,7 +289,7 @@ using UInt = size_t; #elif defined(__x86_64__) && __x86_64__ // Copyright 2023 Google LLC -// Copied from Firebase iOS SDK 10.17.0. +// Copied from Firebase iOS SDK 10.19.0. // Generated by Apple Swift version 5.7.1 (swiftlang-5.7.1.135.3 // clang-1400.0.29.51) @@ -555,12 +555,12 @@ using UInt = size_t; #if __has_attribute(external_source_symbol) #pragma push_macro("any") #undef any -#pragma clang attribute push( \ - __attribute__((external_source_symbol( \ - language = "Swift", defined_in = "FirebaseDatabase", \ - generated_declaration))), \ - apply_to = any(function, enum, objc_interface, objc_category, \ - objc_protocol)) +#pragma clang attribute push( \ + __attribute__((external_source_symbol(language = "Swift", \ + defined_in = "FirebaseDatabase", \ + generated_declaration))), \ + apply_to = \ + any(function, enum, objc_interface, objc_category, objc_protocol)) #pragma pop_macro("any") #endif diff --git a/ios_pod/swift_headers/FirebaseDatabaseSwift-Swift.h b/ios_pod/swift_headers/FirebaseDatabaseSwift-Swift.h index 2c2f9ed0d3..bbca0e19a5 100644 --- a/ios_pod/swift_headers/FirebaseDatabaseSwift-Swift.h +++ b/ios_pod/swift_headers/FirebaseDatabaseSwift-Swift.h @@ -267,12 +267,12 @@ using UInt = size_t; #if __has_attribute(external_source_symbol) #pragma push_macro("any") #undef any -#pragma clang attribute push( \ - __attribute__((external_source_symbol( \ - language = "Swift", defined_in = "FirebaseDatabaseSwift", \ - generated_declaration))), \ - apply_to = any(function, enum, objc_interface, objc_category, \ - objc_protocol)) +#pragma clang attribute push( \ + __attribute__((external_source_symbol( \ + language = "Swift", defined_in = "FirebaseDatabaseSwift", \ + generated_declaration))), \ + apply_to = \ + any(function, enum, objc_interface, objc_category, objc_protocol)) #pragma pop_macro("any") #endif @@ -554,12 +554,12 @@ using UInt = size_t; #if __has_attribute(external_source_symbol) #pragma push_macro("any") #undef any -#pragma clang attribute push( \ - __attribute__((external_source_symbol( \ - language = "Swift", defined_in = "FirebaseDatabaseSwift", \ - generated_declaration))), \ - apply_to = any(function, enum, objc_interface, objc_category, \ - objc_protocol)) +#pragma clang attribute push( \ + __attribute__((external_source_symbol( \ + language = "Swift", defined_in = "FirebaseDatabaseSwift", \ + generated_declaration))), \ + apply_to = \ + any(function, enum, objc_interface, objc_category, objc_protocol)) #pragma pop_macro("any") #endif diff --git a/ios_pod/swift_headers/FirebaseFirestore-Swift.h b/ios_pod/swift_headers/FirebaseFirestore-Swift.h index 28d9e304b2..3b1912a614 100644 --- a/ios_pod/swift_headers/FirebaseFirestore-Swift.h +++ b/ios_pod/swift_headers/FirebaseFirestore-Swift.h @@ -1,7 +1,7 @@ #if 0 #elif defined(__arm64__) && __arm64__ // Copyright 2023 Google LLC -// Copied from Firebase iOS SDK 10.17.0. +// Copied from Firebase iOS SDK 10.19.0. // Generated by Apple Swift version 5.7.1 (swiftlang-5.7.1.135.3 // clang-1400.0.29.51) @@ -268,12 +268,12 @@ using UInt = size_t; #if __has_attribute(external_source_symbol) #pragma push_macro("any") #undef any -#pragma clang attribute push( \ - __attribute__((external_source_symbol( \ - language = "Swift", defined_in = "FirebaseFirestore", \ - generated_declaration))), \ - apply_to = any(function, enum, objc_interface, objc_category, \ - objc_protocol)) +#pragma clang attribute push( \ + __attribute__((external_source_symbol(language = "Swift", \ + defined_in = "FirebaseFirestore", \ + generated_declaration))), \ + apply_to = \ + any(function, enum, objc_interface, objc_category, objc_protocol)) #pragma pop_macro("any") #endif @@ -297,7 +297,7 @@ SWIFT_CLASS_PROPERTY(@property(nonatomic, class, readonly, #elif defined(__x86_64__) && __x86_64__ // Copyright 2023 Google LLC -// Copied from Firebase iOS SDK 10.17.0. +// Copied from Firebase iOS SDK 10.19.0. // Generated by Apple Swift version 5.7.1 (swiftlang-5.7.1.135.3 // clang-1400.0.29.51) @@ -564,12 +564,12 @@ using UInt = size_t; #if __has_attribute(external_source_symbol) #pragma push_macro("any") #undef any -#pragma clang attribute push( \ - __attribute__((external_source_symbol( \ - language = "Swift", defined_in = "FirebaseFirestore", \ - generated_declaration))), \ - apply_to = any(function, enum, objc_interface, objc_category, \ - objc_protocol)) +#pragma clang attribute push( \ + __attribute__((external_source_symbol(language = "Swift", \ + defined_in = "FirebaseFirestore", \ + generated_declaration))), \ + apply_to = \ + any(function, enum, objc_interface, objc_category, objc_protocol)) #pragma pop_macro("any") #endif diff --git a/ios_pod/swift_headers/FirebaseFirestoreSwift-Swift.h b/ios_pod/swift_headers/FirebaseFirestoreSwift-Swift.h index dae6bca988..7e3a7847b4 100644 --- a/ios_pod/swift_headers/FirebaseFirestoreSwift-Swift.h +++ b/ios_pod/swift_headers/FirebaseFirestoreSwift-Swift.h @@ -267,12 +267,12 @@ using UInt = size_t; #if __has_attribute(external_source_symbol) #pragma push_macro("any") #undef any -#pragma clang attribute push( \ - __attribute__((external_source_symbol( \ - language = "Swift", defined_in = "FirebaseFirestoreSwift", \ - generated_declaration))), \ - apply_to = any(function, enum, objc_interface, objc_category, \ - objc_protocol)) +#pragma clang attribute push( \ + __attribute__((external_source_symbol( \ + language = "Swift", defined_in = "FirebaseFirestoreSwift", \ + generated_declaration))), \ + apply_to = \ + any(function, enum, objc_interface, objc_category, objc_protocol)) #pragma pop_macro("any") #endif @@ -554,12 +554,12 @@ using UInt = size_t; #if __has_attribute(external_source_symbol) #pragma push_macro("any") #undef any -#pragma clang attribute push( \ - __attribute__((external_source_symbol( \ - language = "Swift", defined_in = "FirebaseFirestoreSwift", \ - generated_declaration))), \ - apply_to = any(function, enum, objc_interface, objc_category, \ - objc_protocol)) +#pragma clang attribute push( \ + __attribute__((external_source_symbol( \ + language = "Swift", defined_in = "FirebaseFirestoreSwift", \ + generated_declaration))), \ + apply_to = \ + any(function, enum, objc_interface, objc_category, objc_protocol)) #pragma pop_macro("any") #endif diff --git a/ios_pod/swift_headers/FirebaseFunctions-Swift.h b/ios_pod/swift_headers/FirebaseFunctions-Swift.h index 70707b438b..0f08568717 100644 --- a/ios_pod/swift_headers/FirebaseFunctions-Swift.h +++ b/ios_pod/swift_headers/FirebaseFunctions-Swift.h @@ -1,7 +1,7 @@ #if 0 #elif defined(__arm64__) && __arm64__ // Copyright 2023 Google LLC -// Copied from Firebase iOS SDK 10.17.0. +// Copied from Firebase iOS SDK 10.19.0. // Generated by Apple Swift version 5.7.1 (swiftlang-5.7.1.135.3 // clang-1400.0.29.51) @@ -269,12 +269,12 @@ using UInt = size_t; #if __has_attribute(external_source_symbol) #pragma push_macro("any") #undef any -#pragma clang attribute push( \ - __attribute__((external_source_symbol( \ - language = "Swift", defined_in = "FirebaseFunctions", \ - generated_declaration))), \ - apply_to = any(function, enum, objc_interface, objc_category, \ - objc_protocol)) +#pragma clang attribute push( \ + __attribute__((external_source_symbol(language = "Swift", \ + defined_in = "FirebaseFunctions", \ + generated_declaration))), \ + apply_to = \ + any(function, enum, objc_interface, objc_category, objc_protocol)) #pragma pop_macro("any") #endif @@ -569,7 +569,7 @@ SWIFT_CLASS_NAMED("HTTPSCallableResult") #elif defined(__x86_64__) && __x86_64__ // Copyright 2023 Google LLC -// Copied from Firebase iOS SDK 10.17.0. +// Copied from Firebase iOS SDK 10.19.0. // Generated by Apple Swift version 5.7.1 (swiftlang-5.7.1.135.3 // clang-1400.0.29.51) @@ -837,12 +837,12 @@ using UInt = size_t; #if __has_attribute(external_source_symbol) #pragma push_macro("any") #undef any -#pragma clang attribute push( \ - __attribute__((external_source_symbol( \ - language = "Swift", defined_in = "FirebaseFunctions", \ - generated_declaration))), \ - apply_to = any(function, enum, objc_interface, objc_category, \ - objc_protocol)) +#pragma clang attribute push( \ + __attribute__((external_source_symbol(language = "Swift", \ + defined_in = "FirebaseFunctions", \ + generated_declaration))), \ + apply_to = \ + any(function, enum, objc_interface, objc_category, objc_protocol)) #pragma pop_macro("any") #endif diff --git a/ios_pod/swift_headers/FirebaseInAppMessaging-Swift.h b/ios_pod/swift_headers/FirebaseInAppMessaging-Swift.h index f6eabf4826..67e00a5cc3 100644 --- a/ios_pod/swift_headers/FirebaseInAppMessaging-Swift.h +++ b/ios_pod/swift_headers/FirebaseInAppMessaging-Swift.h @@ -1,7 +1,7 @@ #if 0 #elif defined(__arm64__) && __arm64__ // Copyright 2023 Google LLC -// Copied from Firebase iOS SDK 10.17.0. +// Copied from Firebase iOS SDK 10.19.0. // Generated by Apple Swift version 5.7.1 (swiftlang-5.7.1.135.3 // clang-1400.0.29.51) @@ -267,12 +267,12 @@ using UInt = size_t; #if __has_attribute(external_source_symbol) #pragma push_macro("any") #undef any -#pragma clang attribute push( \ - __attribute__((external_source_symbol( \ - language = "Swift", defined_in = "FirebaseInAppMessaging", \ - generated_declaration))), \ - apply_to = any(function, enum, objc_interface, objc_category, \ - objc_protocol)) +#pragma clang attribute push( \ + __attribute__((external_source_symbol( \ + language = "Swift", defined_in = "FirebaseInAppMessaging", \ + generated_declaration))), \ + apply_to = \ + any(function, enum, objc_interface, objc_category, objc_protocol)) #pragma pop_macro("any") #endif @@ -288,7 +288,7 @@ using UInt = size_t; #elif defined(__x86_64__) && __x86_64__ // Copyright 2023 Google LLC -// Copied from Firebase iOS SDK 10.17.0. +// Copied from Firebase iOS SDK 10.19.0. // Generated by Apple Swift version 5.7.1 (swiftlang-5.7.1.135.3 // clang-1400.0.29.51) @@ -554,12 +554,12 @@ using UInt = size_t; #if __has_attribute(external_source_symbol) #pragma push_macro("any") #undef any -#pragma clang attribute push( \ - __attribute__((external_source_symbol( \ - language = "Swift", defined_in = "FirebaseInAppMessaging", \ - generated_declaration))), \ - apply_to = any(function, enum, objc_interface, objc_category, \ - objc_protocol)) +#pragma clang attribute push( \ + __attribute__((external_source_symbol( \ + language = "Swift", defined_in = "FirebaseInAppMessaging", \ + generated_declaration))), \ + apply_to = \ + any(function, enum, objc_interface, objc_category, objc_protocol)) #pragma pop_macro("any") #endif diff --git a/ios_pod/swift_headers/FirebaseInAppMessagingSwift-Swift.h b/ios_pod/swift_headers/FirebaseInAppMessagingSwift-Swift.h index d970a8916c..43d6dd6df4 100644 --- a/ios_pod/swift_headers/FirebaseInAppMessagingSwift-Swift.h +++ b/ios_pod/swift_headers/FirebaseInAppMessagingSwift-Swift.h @@ -267,13 +267,12 @@ using UInt = size_t; #if __has_attribute(external_source_symbol) #pragma push_macro("any") #undef any -#pragma clang attribute push( \ - __attribute__((external_source_symbol( \ - language = "Swift", \ - defined_in = "FirebaseInAppMessagingSwift", \ - generated_declaration))), \ - apply_to = any(function, enum, objc_interface, objc_category, \ - objc_protocol)) +#pragma clang attribute push( \ + __attribute__((external_source_symbol( \ + language = "Swift", defined_in = "FirebaseInAppMessagingSwift", \ + generated_declaration))), \ + apply_to = \ + any(function, enum, objc_interface, objc_category, objc_protocol)) #pragma pop_macro("any") #endif @@ -555,13 +554,12 @@ using UInt = size_t; #if __has_attribute(external_source_symbol) #pragma push_macro("any") #undef any -#pragma clang attribute push( \ - __attribute__((external_source_symbol( \ - language = "Swift", \ - defined_in = "FirebaseInAppMessagingSwift", \ - generated_declaration))), \ - apply_to = any(function, enum, objc_interface, objc_category, \ - objc_protocol)) +#pragma clang attribute push( \ + __attribute__((external_source_symbol( \ + language = "Swift", defined_in = "FirebaseInAppMessagingSwift", \ + generated_declaration))), \ + apply_to = \ + any(function, enum, objc_interface, objc_category, objc_protocol)) #pragma pop_macro("any") #endif diff --git a/ios_pod/swift_headers/FirebaseMLModelDownloader-Swift.h b/ios_pod/swift_headers/FirebaseMLModelDownloader-Swift.h index 38b360a367..9d307a7845 100644 --- a/ios_pod/swift_headers/FirebaseMLModelDownloader-Swift.h +++ b/ios_pod/swift_headers/FirebaseMLModelDownloader-Swift.h @@ -1,7 +1,7 @@ #if 0 #elif defined(__arm64__) && __arm64__ // Copyright 2023 Google LLC -// Copied from Firebase iOS SDK 10.17.0. +// Copied from Firebase iOS SDK 10.19.0. // Generated by Apple Swift version 5.7.1 (swiftlang-5.7.1.135.3 // clang-1400.0.29.51) @@ -267,12 +267,12 @@ using UInt = size_t; #if __has_attribute(external_source_symbol) #pragma push_macro("any") #undef any -#pragma clang attribute push( \ - __attribute__((external_source_symbol( \ - language = "Swift", defined_in = "FirebaseMLModelDownloader", \ - generated_declaration))), \ - apply_to = any(function, enum, objc_interface, objc_category, \ - objc_protocol)) +#pragma clang attribute push( \ + __attribute__((external_source_symbol( \ + language = "Swift", defined_in = "FirebaseMLModelDownloader", \ + generated_declaration))), \ + apply_to = \ + any(function, enum, objc_interface, objc_category, objc_protocol)) #pragma pop_macro("any") #endif @@ -289,7 +289,7 @@ using UInt = size_t; #elif defined(__x86_64__) && __x86_64__ // Copyright 2023 Google LLC -// Copied from Firebase iOS SDK 10.17.0. +// Copied from Firebase iOS SDK 10.19.0. // Generated by Apple Swift version 5.7.1 (swiftlang-5.7.1.135.3 // clang-1400.0.29.51) @@ -555,12 +555,12 @@ using UInt = size_t; #if __has_attribute(external_source_symbol) #pragma push_macro("any") #undef any -#pragma clang attribute push( \ - __attribute__((external_source_symbol( \ - language = "Swift", defined_in = "FirebaseMLModelDownloader", \ - generated_declaration))), \ - apply_to = any(function, enum, objc_interface, objc_category, \ - objc_protocol)) +#pragma clang attribute push( \ + __attribute__((external_source_symbol( \ + language = "Swift", defined_in = "FirebaseMLModelDownloader", \ + generated_declaration))), \ + apply_to = \ + any(function, enum, objc_interface, objc_category, objc_protocol)) #pragma pop_macro("any") #endif diff --git a/ios_pod/swift_headers/FirebaseRemoteConfig-Swift.h b/ios_pod/swift_headers/FirebaseRemoteConfig-Swift.h index ee28fc7d37..3705a8b105 100644 --- a/ios_pod/swift_headers/FirebaseRemoteConfig-Swift.h +++ b/ios_pod/swift_headers/FirebaseRemoteConfig-Swift.h @@ -1,7 +1,7 @@ #if 0 #elif defined(__arm64__) && __arm64__ // Copyright 2023 Google LLC -// Copied from Firebase iOS SDK 10.17.0. +// Copied from Firebase iOS SDK 10.19.0. // Generated by Apple Swift version 5.7.1 (swiftlang-5.7.1.135.3 // clang-1400.0.29.51) @@ -267,12 +267,12 @@ using UInt = size_t; #if __has_attribute(external_source_symbol) #pragma push_macro("any") #undef any -#pragma clang attribute push( \ - __attribute__((external_source_symbol( \ - language = "Swift", defined_in = "FirebaseRemoteConfig", \ - generated_declaration))), \ - apply_to = any(function, enum, objc_interface, objc_category, \ - objc_protocol)) +#pragma clang attribute push( \ + __attribute__((external_source_symbol(language = "Swift", \ + defined_in = "FirebaseRemoteConfig", \ + generated_declaration))), \ + apply_to = \ + any(function, enum, objc_interface, objc_category, objc_protocol)) #pragma pop_macro("any") #endif @@ -289,7 +289,7 @@ using UInt = size_t; #elif defined(__x86_64__) && __x86_64__ // Copyright 2023 Google LLC -// Copied from Firebase iOS SDK 10.17.0. +// Copied from Firebase iOS SDK 10.19.0. // Generated by Apple Swift version 5.7.1 (swiftlang-5.7.1.135.3 // clang-1400.0.29.51) @@ -555,12 +555,12 @@ using UInt = size_t; #if __has_attribute(external_source_symbol) #pragma push_macro("any") #undef any -#pragma clang attribute push( \ - __attribute__((external_source_symbol( \ - language = "Swift", defined_in = "FirebaseRemoteConfig", \ - generated_declaration))), \ - apply_to = any(function, enum, objc_interface, objc_category, \ - objc_protocol)) +#pragma clang attribute push( \ + __attribute__((external_source_symbol(language = "Swift", \ + defined_in = "FirebaseRemoteConfig", \ + generated_declaration))), \ + apply_to = \ + any(function, enum, objc_interface, objc_category, objc_protocol)) #pragma pop_macro("any") #endif diff --git a/ios_pod/swift_headers/FirebaseRemoteConfigSwift-Swift.h b/ios_pod/swift_headers/FirebaseRemoteConfigSwift-Swift.h index f23029703e..92adb51a13 100644 --- a/ios_pod/swift_headers/FirebaseRemoteConfigSwift-Swift.h +++ b/ios_pod/swift_headers/FirebaseRemoteConfigSwift-Swift.h @@ -267,12 +267,12 @@ using UInt = size_t; #if __has_attribute(external_source_symbol) #pragma push_macro("any") #undef any -#pragma clang attribute push( \ - __attribute__((external_source_symbol( \ - language = "Swift", defined_in = "FirebaseRemoteConfigSwift", \ - generated_declaration))), \ - apply_to = any(function, enum, objc_interface, objc_category, \ - objc_protocol)) +#pragma clang attribute push( \ + __attribute__((external_source_symbol( \ + language = "Swift", defined_in = "FirebaseRemoteConfigSwift", \ + generated_declaration))), \ + apply_to = \ + any(function, enum, objc_interface, objc_category, objc_protocol)) #pragma pop_macro("any") #endif @@ -554,12 +554,12 @@ using UInt = size_t; #if __has_attribute(external_source_symbol) #pragma push_macro("any") #undef any -#pragma clang attribute push( \ - __attribute__((external_source_symbol( \ - language = "Swift", defined_in = "FirebaseRemoteConfigSwift", \ - generated_declaration))), \ - apply_to = any(function, enum, objc_interface, objc_category, \ - objc_protocol)) +#pragma clang attribute push( \ + __attribute__((external_source_symbol( \ + language = "Swift", defined_in = "FirebaseRemoteConfigSwift", \ + generated_declaration))), \ + apply_to = \ + any(function, enum, objc_interface, objc_category, objc_protocol)) #pragma pop_macro("any") #endif diff --git a/ios_pod/swift_headers/FirebaseSessions-Swift.h b/ios_pod/swift_headers/FirebaseSessions-Swift.h index c57a06c06c..3df79136dc 100644 --- a/ios_pod/swift_headers/FirebaseSessions-Swift.h +++ b/ios_pod/swift_headers/FirebaseSessions-Swift.h @@ -1,7 +1,7 @@ #if 0 #elif defined(__arm64__) && __arm64__ // Copyright 2023 Google LLC -// Copied from Firebase iOS SDK 10.17.0. +// Copied from Firebase iOS SDK 10.19.0. // Generated by Apple Swift version 5.7.1 (swiftlang-5.7.1.135.3 // clang-1400.0.29.51) @@ -268,12 +268,12 @@ using UInt = size_t; #if __has_attribute(external_source_symbol) #pragma push_macro("any") #undef any -#pragma clang attribute push( \ - __attribute__((external_source_symbol( \ - language = "Swift", defined_in = "FirebaseSessions", \ - generated_declaration))), \ - apply_to = any(function, enum, objc_interface, objc_category, \ - objc_protocol)) +#pragma clang attribute push( \ + __attribute__((external_source_symbol(language = "Swift", \ + defined_in = "FirebaseSessions", \ + generated_declaration))), \ + apply_to = \ + any(function, enum, objc_interface, objc_category, objc_protocol)) #pragma pop_macro("any") #endif @@ -334,7 +334,7 @@ typedef SWIFT_ENUM_NAMED(NSInteger, FIRSessionsSubscriberName, #elif defined(__x86_64__) && __x86_64__ // Copyright 2023 Google LLC -// Copied from Firebase iOS SDK 10.17.0. +// Copied from Firebase iOS SDK 10.19.0. // Generated by Apple Swift version 5.7.1 (swiftlang-5.7.1.135.3 // clang-1400.0.29.51) @@ -601,12 +601,12 @@ using UInt = size_t; #if __has_attribute(external_source_symbol) #pragma push_macro("any") #undef any -#pragma clang attribute push( \ - __attribute__((external_source_symbol( \ - language = "Swift", defined_in = "FirebaseSessions", \ - generated_declaration))), \ - apply_to = any(function, enum, objc_interface, objc_category, \ - objc_protocol)) +#pragma clang attribute push( \ + __attribute__((external_source_symbol(language = "Swift", \ + defined_in = "FirebaseSessions", \ + generated_declaration))), \ + apply_to = \ + any(function, enum, objc_interface, objc_category, objc_protocol)) #pragma pop_macro("any") #endif diff --git a/ios_pod/swift_headers/FirebaseSharedSwift-Swift.h b/ios_pod/swift_headers/FirebaseSharedSwift-Swift.h index b45ab57a47..cab3d8f982 100644 --- a/ios_pod/swift_headers/FirebaseSharedSwift-Swift.h +++ b/ios_pod/swift_headers/FirebaseSharedSwift-Swift.h @@ -1,7 +1,7 @@ #if 0 #elif defined(__arm64__) && __arm64__ // Copyright 2023 Google LLC -// Copied from Firebase iOS SDK 10.17.0. +// Copied from Firebase iOS SDK 10.19.0. // Generated by Apple Swift version 5.7.1 (swiftlang-5.7.1.135.3 // clang-1400.0.29.51) @@ -267,12 +267,12 @@ using UInt = size_t; #if __has_attribute(external_source_symbol) #pragma push_macro("any") #undef any -#pragma clang attribute push( \ - __attribute__((external_source_symbol( \ - language = "Swift", defined_in = "FirebaseSharedSwift", \ - generated_declaration))), \ - apply_to = any(function, enum, objc_interface, objc_category, \ - objc_protocol)) +#pragma clang attribute push( \ + __attribute__((external_source_symbol(language = "Swift", \ + defined_in = "FirebaseSharedSwift", \ + generated_declaration))), \ + apply_to = \ + any(function, enum, objc_interface, objc_category, objc_protocol)) #pragma pop_macro("any") #endif @@ -288,7 +288,7 @@ using UInt = size_t; #elif defined(__x86_64__) && __x86_64__ // Copyright 2023 Google LLC -// Copied from Firebase iOS SDK 10.17.0. +// Copied from Firebase iOS SDK 10.19.0. // Generated by Apple Swift version 5.7.1 (swiftlang-5.7.1.135.3 // clang-1400.0.29.51) @@ -554,12 +554,12 @@ using UInt = size_t; #if __has_attribute(external_source_symbol) #pragma push_macro("any") #undef any -#pragma clang attribute push( \ - __attribute__((external_source_symbol( \ - language = "Swift", defined_in = "FirebaseSharedSwift", \ - generated_declaration))), \ - apply_to = any(function, enum, objc_interface, objc_category, \ - objc_protocol)) +#pragma clang attribute push( \ + __attribute__((external_source_symbol(language = "Swift", \ + defined_in = "FirebaseSharedSwift", \ + generated_declaration))), \ + apply_to = \ + any(function, enum, objc_interface, objc_category, objc_protocol)) #pragma pop_macro("any") #endif diff --git a/ios_pod/swift_headers/FirebaseStorage-Swift.h b/ios_pod/swift_headers/FirebaseStorage-Swift.h index f45f35bace..682abc2340 100644 --- a/ios_pod/swift_headers/FirebaseStorage-Swift.h +++ b/ios_pod/swift_headers/FirebaseStorage-Swift.h @@ -1,7 +1,7 @@ #if 0 #elif defined(__arm64__) && __arm64__ // Copyright 2023 Google LLC -// Copied from Firebase iOS SDK 10.17.0. +// Copied from Firebase iOS SDK 10.19.0. // Generated by Apple Swift version 5.7.1 (swiftlang-5.7.1.135.3 // clang-1400.0.29.51) @@ -271,11 +271,11 @@ using UInt = size_t; #pragma push_macro("any") #undef any #pragma clang attribute push( \ - __attribute__((external_source_symbol( \ - language = "Swift", defined_in = "FirebaseStorage", \ - generated_declaration))), \ - apply_to = any(function, enum, objc_interface, objc_category, \ - objc_protocol)) + __attribute__((external_source_symbol(language = "Swift", \ + defined_in = "FirebaseStorage", \ + generated_declaration))), \ + apply_to = \ + any(function, enum, objc_interface, objc_category, objc_protocol)) #pragma pop_macro("any") #endif @@ -940,7 +940,7 @@ SWIFT_CLASS_NAMED("StorageUploadTask") #elif defined(__x86_64__) && __x86_64__ // Copyright 2023 Google LLC -// Copied from Firebase iOS SDK 10.17.0. +// Copied from Firebase iOS SDK 10.19.0. // Generated by Apple Swift version 5.7.1 (swiftlang-5.7.1.135.3 // clang-1400.0.29.51) @@ -1210,11 +1210,11 @@ using UInt = size_t; #pragma push_macro("any") #undef any #pragma clang attribute push( \ - __attribute__((external_source_symbol( \ - language = "Swift", defined_in = "FirebaseStorage", \ - generated_declaration))), \ - apply_to = any(function, enum, objc_interface, objc_category, \ - objc_protocol)) + __attribute__((external_source_symbol(language = "Swift", \ + defined_in = "FirebaseStorage", \ + generated_declaration))), \ + apply_to = \ + any(function, enum, objc_interface, objc_category, objc_protocol)) #pragma pop_macro("any") #endif diff --git a/ios_pod/swift_headers/Promises-Swift.h b/ios_pod/swift_headers/Promises-Swift.h index 898c0eb8c0..215f048160 100644 --- a/ios_pod/swift_headers/Promises-Swift.h +++ b/ios_pod/swift_headers/Promises-Swift.h @@ -1,7 +1,7 @@ #if 0 #elif defined(__arm64__) && __arm64__ // Copyright 2023 Google LLC -// Copied from Firebase iOS SDK 10.17.0. +// Copied from Firebase iOS SDK 10.19.0. // Generated by Apple Swift version 5.7.1 (swiftlang-5.7.1.135.3 // clang-1400.0.29.51) @@ -267,12 +267,11 @@ using UInt = size_t; #if __has_attribute(external_source_symbol) #pragma push_macro("any") #undef any -#pragma clang attribute push( \ - __attribute__((external_source_symbol(language = "Swift", \ - defined_in = "Promises", \ - generated_declaration))), \ - apply_to = any(function, enum, objc_interface, objc_category, \ - objc_protocol)) +#pragma clang attribute push( \ + __attribute__((external_source_symbol( \ + language = "Swift", defined_in = "Promises", generated_declaration))), \ + apply_to = \ + any(function, enum, objc_interface, objc_category, objc_protocol)) #pragma pop_macro("any") #endif @@ -288,7 +287,7 @@ using UInt = size_t; #elif defined(__x86_64__) && __x86_64__ // Copyright 2023 Google LLC -// Copied from Firebase iOS SDK 10.17.0. +// Copied from Firebase iOS SDK 10.19.0. // Generated by Apple Swift version 5.7.1 (swiftlang-5.7.1.135.3 // clang-1400.0.29.51) @@ -554,12 +553,11 @@ using UInt = size_t; #if __has_attribute(external_source_symbol) #pragma push_macro("any") #undef any -#pragma clang attribute push( \ - __attribute__((external_source_symbol(language = "Swift", \ - defined_in = "Promises", \ - generated_declaration))), \ - apply_to = any(function, enum, objc_interface, objc_category, \ - objc_protocol)) +#pragma clang attribute push( \ + __attribute__((external_source_symbol( \ + language = "Swift", defined_in = "Promises", generated_declaration))), \ + apply_to = \ + any(function, enum, objc_interface, objc_category, objc_protocol)) #pragma pop_macro("any") #endif diff --git a/ios_pod/swift_headers/SwiftProtobuf-Swift.h b/ios_pod/swift_headers/SwiftProtobuf-Swift.h index 7acbbc5e58..f35bd5a371 100644 --- a/ios_pod/swift_headers/SwiftProtobuf-Swift.h +++ b/ios_pod/swift_headers/SwiftProtobuf-Swift.h @@ -1,7 +1,7 @@ #if 0 #elif defined(__arm64__) && __arm64__ // Copyright 2023 Google LLC -// Copied from Firebase iOS SDK 10.17.0. +// Copied from Firebase iOS SDK 10.19.0. // Generated by Apple Swift version 5.7.1 (swiftlang-5.7.1.135.3 // clang-1400.0.29.51) @@ -267,12 +267,12 @@ using UInt = size_t; #if __has_attribute(external_source_symbol) #pragma push_macro("any") #undef any -#pragma clang attribute push( \ - __attribute__((external_source_symbol( \ - language = "Swift", defined_in = "SwiftProtobuf", \ - generated_declaration))), \ - apply_to = any(function, enum, objc_interface, objc_category, \ - objc_protocol)) +#pragma clang attribute push( \ + __attribute__((external_source_symbol(language = "Swift", \ + defined_in = "SwiftProtobuf", \ + generated_declaration))), \ + apply_to = \ + any(function, enum, objc_interface, objc_category, objc_protocol)) #pragma pop_macro("any") #endif @@ -288,7 +288,7 @@ using UInt = size_t; #elif defined(__x86_64__) && __x86_64__ // Copyright 2023 Google LLC -// Copied from Firebase iOS SDK 10.17.0. +// Copied from Firebase iOS SDK 10.19.0. // Generated by Apple Swift version 5.7.1 (swiftlang-5.7.1.135.3 // clang-1400.0.29.51) @@ -554,12 +554,12 @@ using UInt = size_t; #if __has_attribute(external_source_symbol) #pragma push_macro("any") #undef any -#pragma clang attribute push( \ - __attribute__((external_source_symbol( \ - language = "Swift", defined_in = "SwiftProtobuf", \ - generated_declaration))), \ - apply_to = any(function, enum, objc_interface, objc_category, \ - objc_protocol)) +#pragma clang attribute push( \ + __attribute__((external_source_symbol(language = "Swift", \ + defined_in = "SwiftProtobuf", \ + generated_declaration))), \ + apply_to = \ + any(function, enum, objc_interface, objc_category, objc_protocol)) #pragma pop_macro("any") #endif diff --git a/messaging/integration_test/Podfile b/messaging/integration_test/Podfile index cc8c98d4c7..6fa8a9dc34 100644 --- a/messaging/integration_test/Podfile +++ b/messaging/integration_test/Podfile @@ -4,12 +4,12 @@ use_frameworks! :linkage => :static target 'integration_test' do platform :ios, '11.0' - pod 'Firebase/Messaging', '10.17.0' + pod 'Firebase/Messaging', '10.19.0' end target 'integration_test_tvos' do platform :tvos, '12.0' - pod 'Firebase/Messaging', '10.17.0' + pod 'Firebase/Messaging', '10.19.0' end post_install do |installer| diff --git a/release_build_files/readme.md b/release_build_files/readme.md index 301c4c106d..171b8aac0e 100644 --- a/release_build_files/readme.md +++ b/release_build_files/readme.md @@ -230,50 +230,50 @@ Feature | Required Frameworks and Cocoapods -------------------------- | --------------------------------------- Firebase Analytics | firebase_analytics.xcframework | | firebase.xcframework -| | Firebase/Analytics Cocoapod (10.17.0) +| | Firebase/Analytics Cocoapod (10.19.0) Firebase App Check | firebase_app_check.xcframework | | firebase.xcframework -| | Firebase/AppCheck Cocoapod (10.17.0) +| | Firebase/AppCheck Cocoapod (10.19.0) Firebase Authentication | firebase_auth.xcframework | | firebase.xcframework -| | Firebase/Auth Cocoapod (10.17.0) +| | Firebase/Auth Cocoapod (10.19.0) Firebase Dynamic Links | firebase_dynamic_links.xcframework | | firebase.xcframework -| | Firebase/DynamicLinks Cocoapod (10.17.0) +| | Firebase/DynamicLinks Cocoapod (10.19.0) Cloud Firestore | firebase_firestore.xcframework | | firebase_auth.xcframework | | firebase.xcframework -| | Firebase/Firestore Cocoapod (10.17.0) -| | Firebase/Auth Cocoapod (10.17.0) +| | Firebase/Firestore Cocoapod (10.19.0) +| | Firebase/Auth Cocoapod (10.19.0) Firebase Functions | firebase_functions.xcframework | | firebase_auth.xcframework (optional) | | firebase.xcframework -| | Firebase/Functions Cocoapod (10.17.0) -| | Firebase/Auth Cocoapod (10.17.0) +| | Firebase/Functions Cocoapod (10.19.0) +| | Firebase/Auth Cocoapod (10.19.0) Google Mobile Ads | firebase_gma.xcframework | | firebase.xcframework -| | Firebase/CoreOnly Cocoapod (10.17.0) -| | Google-Mobile-Ads-SDK Cocoapod (10.12.0) +| | Firebase/CoreOnly Cocoapod (10.19.0) +| | Google-Mobile-Ads-SDK Cocoapod (10.14.0) | | GoogleUserMessagingPlatform Cocoapod (2.1.0) Firebase Installations | firebase_installations.xcframework | | firebase.xcframework -| | FirebaseInstallations Cocoapod (10.17.0) +| | FirebaseInstallations Cocoapod (10.19.0) Firebase Cloud Messaging | firebase_messaging.xcframework | | firebase.xcframework -| | Firebase/Messaging Cocoapod (10.17.0) +| | Firebase/Messaging Cocoapod (10.19.0) Firebase Realtime Database | firebase_database.xcframework | | firebase_auth.xcframework | | firebase.xcframework -| | Firebase/Database Cocoapod (10.17.0) -| | Firebase/Auth Cocoapod (10.17.0) +| | Firebase/Database Cocoapod (10.19.0) +| | Firebase/Auth Cocoapod (10.19.0) Firebase Remote Config | firebase_remote_config.xcframework | | firebase.xcframework -| | Firebase/RemoteConfig Cocoapod (10.17.0) +| | Firebase/RemoteConfig Cocoapod (10.19.0) Firebase Storage | firebase_storage.xcframework | | firebase_auth.xcframework | | firebase.xcframework -| | Firebase/Storage Cocoapod (10.17.0) -| | Firebase/Auth Cocoapod (10.17.0) +| | Firebase/Storage Cocoapod (10.19.0) +| | Firebase/Auth Cocoapod (10.19.0) Important: Each version of the Firebase C++ SDK supports a specific version of the Firebase iOS SDK. Please ensure that you reference the Cocoapod versions @@ -293,50 +293,50 @@ Feature | Required Libraries and Cocoapods -------------------------- | ----------------------------------------- Firebase Analytics | libfirebase_analytics.a | | libfirebase_app.a -| | Firebase/Analytics Cocoapod (10.17.0) +| | Firebase/Analytics Cocoapod (10.19.0) Firebase App Check | firebase_app_check.xcframework | | firebase.xcframework -| | Firebase/AppCheck Cocoapod (10.17.0) +| | Firebase/AppCheck Cocoapod (10.19.0) Firebase Authentication | libfirebase_auth.a | | libfirebase_app.a -| | Firebase/Auth Cocoapod (10.17.0) +| | Firebase/Auth Cocoapod (10.19.0) Firebase Dynamic Links | libfirebase_dynamic_links.a | | libfirebase_app.a -| | Firebase/DynamicLinks Cocoapod (10.17.0) +| | Firebase/DynamicLinks Cocoapod (10.19.0) Cloud Firestore | libfirebase_firestore.a | | libfirebase_app.a | | libfirebase_auth.a -| | Firebase/Firestore Cocoapod (10.17.0) -| | Firebase/Auth Cocoapod (10.17.0) +| | Firebase/Firestore Cocoapod (10.19.0) +| | Firebase/Auth Cocoapod (10.19.0) Firebase Functions | libfirebase_functions.a | | libfirebase_app.a | | libfirebase_auth.a (optional) -| | Firebase/Functions Cocoapod (10.17.0) -| | Firebase/Auth Cocoapod (10.17.0) +| | Firebase/Functions Cocoapod (10.19.0) +| | Firebase/Auth Cocoapod (10.19.0) Google Mobile Ads | libfirebase_gma.a | | libfirebase_app.a -| | Firebase/CoreOnly Cocoapod (10.17.0) -| | Google-Mobile-Ads-SDK Cocoapod (10.12.0) +| | Firebase/CoreOnly Cocoapod (10.19.0) +| | Google-Mobile-Ads-SDK Cocoapod (10.14.0) | | GoogleUserMessagingPlatform Cocoapod (2.1.0) Firebase Installations | libfirebase_installations.a | | libfirebase_app.a -| | FirebaseInstallations Cocoapod (10.17.0) +| | FirebaseInstallations Cocoapod (10.19.0) Firebase Cloud Messaging | libfirebase_messaging.a | | libfirebase_app.a -| | Firebase/CloudMessaging Cocoapod (10.17.0) +| | Firebase/CloudMessaging Cocoapod (10.19.0) Firebase Realtime Database | libfirebase_database.a | | libfirebase_app.a | | libfirebase_auth.a -| | Firebase/Database Cocoapod (10.17.0) -| | Firebase/Auth Cocoapod (10.17.0) +| | Firebase/Database Cocoapod (10.19.0) +| | Firebase/Auth Cocoapod (10.19.0) Firebase Remote Config | libfirebase_remote_config.a | | libfirebase_app.a -| | Firebase/RemoteConfig Cocoapod (10.17.0) +| | Firebase/RemoteConfig Cocoapod (10.19.0) Firebase Storage | libfirebase_storage.a | | libfirebase_app.a | | libfirebase_auth.a -| | Firebase/Storage Cocoapod (10.17.0) -| | Firebase/Auth Cocoapod (10.17.0) +| | Firebase/Storage Cocoapod (10.19.0) +| | Firebase/Auth Cocoapod (10.19.0) Important: Each version of the Firebase C++ SDK supports a specific version of the Firebase iOS SDK. Please ensure that you reference the Cocoapod versions @@ -631,17 +631,18 @@ workflow use only during the development of your app, not for publicly shipping code. ## Release Notes -### Upcoming Release +### 11.7.0 - Changes - General (Android): Firebase C++ on Android is now built using Android API level 33 and Gradle 6.7.1. - - General (Android): Update to Firebase Android BoM version 32.3.1. - - General (iOS): Update to Firebase Cocoapods version 10.17.0. + - General (Android): Update to Firebase Android BoM version 32.7.0. + - General (iOS): Update to Firebase Cocoapods version 10.19.0. - Analytics: Updated the consent management API to include new consent signals. - - Auth: Fix a bug where anonymous account can't be linked with - email password credential. For background, see - [Email Enumeration Protection](https://cloud.google.com/identity-platform/docs/admin/email-enumeration-protection#overview) - - GMA (Android) Updated dependency to play-services-ads version 22.4.0. + - Auth: Fix a bug where an anonymous account can't be linked with + email password credential. For background, see [Email Enumeration + Protection](https://cloud.google.com/identity-platform/docs/admin/email-enumeration-protection) + - GMA (Android) Updated dependency to play-services-ads version 22.6.0. + - GMA (iOS) Updated dependency to Google-Mobile-Ads-SDK version 10.14.0. ### 11.6.0 - Changes diff --git a/remote_config/integration_test/Podfile b/remote_config/integration_test/Podfile index f42c58ab53..4a9816cecb 100644 --- a/remote_config/integration_test/Podfile +++ b/remote_config/integration_test/Podfile @@ -4,12 +4,12 @@ use_frameworks! :linkage => :static target 'integration_test' do platform :ios, '11.0' - pod 'Firebase/RemoteConfig', '10.17.0' + pod 'Firebase/RemoteConfig', '10.19.0' end target 'integration_test_tvos' do platform :tvos, '12.0' - pod 'Firebase/RemoteConfig', '10.17.0' + pod 'Firebase/RemoteConfig', '10.19.0' end post_install do |installer| diff --git a/scripts/gha/print_matrix_configuration.py b/scripts/gha/print_matrix_configuration.py index 581aba5df1..066cc85d80 100644 --- a/scripts/gha/print_matrix_configuration.py +++ b/scripts/gha/print_matrix_configuration.py @@ -177,7 +177,6 @@ {"type": "ftl", "device": "model=dreamlte,version=28"}, # Galaxy S8 {"type": "ftl", "device": "model=gts3lltevzw,version=28"}, # Galaxy Tab S3 {"type": "ftl", "device": "model=SH-01L,version=28"}, # AQUOS sense2 SH-01L - {"type": "ftl", "device": "model=PD1901,version=28"}, # VIVO 1901 ], "android_latest": [ {"type": "ftl", "device": "model=oriole,version=33"}, # Pixel 6 diff --git a/storage/integration_test/Podfile b/storage/integration_test/Podfile index 5918a37982..3c3818b5c0 100644 --- a/storage/integration_test/Podfile +++ b/storage/integration_test/Podfile @@ -4,14 +4,14 @@ use_frameworks! :linkage => :static target 'integration_test' do platform :ios, '11.0' - pod 'Firebase/Storage', '10.17.0' - pod 'Firebase/Auth', '10.17.0' + pod 'Firebase/Storage', '10.19.0' + pod 'Firebase/Auth', '10.19.0' end target 'integration_test_tvos' do platform :tvos, '12.0' - pod 'Firebase/Storage', '10.17.0' - pod 'Firebase/Auth', '10.17.0' + pod 'Firebase/Storage', '10.19.0' + pod 'Firebase/Auth', '10.19.0' end post_install do |installer|