Skip to content

Commit 019aa74

Browse files
Merge cf36cfb into f08b183
2 parents f08b183 + cf36cfb commit 019aa74

File tree

35 files changed

+305
-181
lines changed

35 files changed

+305
-181
lines changed

analytics/integration_test/Podfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ use_frameworks! :linkage => :static
55

66
target 'integration_test' do
77
platform :ios, '13.0'
8-
pod 'Firebase/Analytics', '11.10.0'
8+
pod 'Firebase/Analytics', '11.13.0'
99
end
1010

1111
target 'integration_test_tvos' do
1212
platform :tvos, '13.0'
13-
pod 'Firebase/Analytics', '11.10.0'
13+
pod 'Firebase/Analytics', '11.13.0'
1414
end
1515

1616
post_install do |installer|

analytics/ios_headers/FIREventNames.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2025 Google LLC
22

3-
// Copied from Firebase Analytics iOS SDK 11.10.0.
3+
// Copied from Firebase Analytics iOS SDK 11.13.0.
44

55
/// @file FIREventNames.h
66
///

analytics/ios_headers/FIRParameterNames.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2025 Google LLC
22

3-
// Copied from Firebase Analytics iOS SDK 11.10.0.
3+
// Copied from Firebase Analytics iOS SDK 11.13.0.
44

55
/// @file FIRParameterNames.h
66
///

analytics/ios_headers/FIRUserPropertyNames.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2025 Google LLC
22

3-
// Copied from Firebase Analytics iOS SDK 11.10.0.
3+
// Copied from Firebase Analytics iOS SDK 11.13.0.
44

55
/// @file FIRUserPropertyNames.h
66
///

app/integration_test/Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ platform :ios, '13.0'
44
use_frameworks! :linkage => :static
55

66
target 'integration_test' do
7-
pod 'Firebase/Analytics', '11.10.0'
7+
pod 'Firebase/Analytics', '11.13.0'
88
end
99

1010
post_install do |installer|

app_check/integration_test/Podfile

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,20 @@ use_frameworks! :linkage => :static
44

55
target 'integration_test' do
66
platform :ios, '13.0'
7-
pod 'Firebase/AppCheck', '11.10.0'
8-
pod 'Firebase/Database', '11.10.0'
9-
pod 'Firebase/Auth', '11.10.0'
10-
pod 'Firebase/Storage', '11.10.0'
11-
pod 'Firebase/Functions', '11.10.0'
7+
pod 'Firebase/AppCheck', '11.13.0'
8+
pod 'Firebase/Database', '11.13.0'
9+
pod 'Firebase/Auth', '11.13.0'
10+
pod 'Firebase/Storage', '11.13.0'
11+
pod 'Firebase/Functions', '11.13.0'
1212
end
1313

1414
target 'integration_test_tvos' do
1515
platform :tvos, '13.0'
16-
pod 'Firebase/AppCheck', '11.10.0'
17-
pod 'Firebase/Database', '11.10.0'
18-
pod 'Firebase/Auth', '11.10.0'
19-
pod 'Firebase/Storage', '11.10.0'
20-
pod 'Firebase/Functions', '11.10.0'
16+
pod 'Firebase/AppCheck', '11.13.0'
17+
pod 'Firebase/Database', '11.13.0'
18+
pod 'Firebase/Auth', '11.13.0'
19+
pod 'Firebase/Storage', '11.13.0'
20+
pod 'Firebase/Functions', '11.13.0'
2121
end
2222

2323
post_install do |installer|

auth/integration_test/Podfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ use_frameworks! :linkage => :static
44

55
target 'integration_test' do
66
platform :ios, '13.0'
7-
pod 'Firebase/Auth', '11.10.0'
7+
pod 'Firebase/Auth', '11.13.0'
88
end
99

1010
target 'integration_test_tvos' do
1111
platform :tvos, '13.0'
12-
pod 'Firebase/Auth', '11.10.0'
12+
pod 'Firebase/Auth', '11.13.0'
1313
end
1414

1515
post_install do |installer|

cmake/external/firestore.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ endif()
2121
# If the format of the line below changes, then be sure to update
2222
# https://github.com/firebase/firebase-cpp-sdk/blob/fd054fa016/.github/workflows/update-dependencies.yml#L81
2323
#set(version CocoaPods-11.8.1)
24-
set(version CocoaPods-11.10.0)
24+
set(version CocoaPods-11.13.0)
2525

2626
function(GetReleasedDep)
2727
message("Getting released firebase-ios-sdk @ ${version}")

database/integration_test/Podfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ use_frameworks! :linkage => :static
44

55
target 'integration_test' do
66
platform :ios, '13.0'
7-
pod 'Firebase/Database', '11.10.0'
8-
pod 'Firebase/Auth', '11.10.0'
7+
pod 'Firebase/Database', '11.13.0'
8+
pod 'Firebase/Auth', '11.13.0'
99
end
1010

1111
target 'integration_test_tvos' do
1212
platform :tvos, '13.0'
13-
pod 'Firebase/Database', '11.10.0'
14-
pod 'Firebase/Auth', '11.10.0'
13+
pod 'Firebase/Database', '11.13.0'
14+
pod 'Firebase/Auth', '11.13.0'
1515
end
1616

1717
post_install do |installer|

dynamic_links/integration_test/Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use_frameworks! :linkage => :static
55

66
target 'integration_test' do
77
platform :ios, '13.0'
8-
pod 'Firebase/DynamicLinks', '11.10.0'
8+
pod 'Firebase/DynamicLinks', '11.13.0'
99
end
1010

1111
post_install do |installer|

firestore/integration_test/Podfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ use_frameworks! :linkage => :static
44

55
target 'integration_test' do
66
platform :ios, '13.0'
7-
pod 'Firebase/Firestore', '11.10.0'
8-
pod 'Firebase/Auth', '11.10.0'
7+
pod 'Firebase/Firestore', '11.13.0'
8+
pod 'Firebase/Auth', '11.13.0'
99
end
1010

1111
target 'integration_test_tvos' do
1212
platform :tvos, '13.0'
13-
pod 'Firebase/Firestore', '11.10.0'
14-
pod 'Firebase/Auth', '11.10.0'
13+
pod 'Firebase/Firestore', '11.13.0'
14+
pod 'Firebase/Auth', '11.13.0'
1515
end
1616

1717
post_install do |installer|

firestore/integration_test_internal/Podfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ use_frameworks! :linkage => :static
44

55
target 'integration_test' do
66
platform :ios, '13.0'
7-
pod 'Firebase/Firestore', '11.10.0'
8-
pod 'Firebase/Auth', '11.10.0'
7+
pod 'Firebase/Firestore', '11.13.0'
8+
pod 'Firebase/Auth', '11.13.0'
99
end
1010

1111
target 'integration_test_tvos' do
1212
platform :tvos, '13.0'
13-
pod 'Firebase/Firestore', '11.10.0'
14-
pod 'Firebase/Auth', '11.10.0'
13+
pod 'Firebase/Firestore', '11.13.0'
14+
pod 'Firebase/Auth', '11.13.0'
1515
end
1616

1717
post_install do |installer|

functions/integration_test/Podfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ use_frameworks! :linkage => :static
44

55
target 'integration_test' do
66
platform :ios, '13.0'
7-
pod 'Firebase/Functions', '11.10.0'
8-
pod 'Firebase/Auth', '11.10.0'
7+
pod 'Firebase/Functions', '11.13.0'
8+
pod 'Firebase/Auth', '11.13.0'
99
end
1010

1111
target 'integration_test_tvos' do
1212
platform :tvos, '13.0'
13-
pod 'Firebase/Functions', '11.10.0'
14-
pod 'Firebase/Auth', '11.10.0'
13+
pod 'Firebase/Functions', '11.13.0'
14+
pod 'Firebase/Auth', '11.13.0'
1515
end
1616

1717
post_install do |installer|

gma/integration_test/Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use_frameworks! :linkage => :static
55

66
target 'integration_test' do
77
platform :ios, '13.0'
8-
pod 'Firebase/CoreOnly', '11.10.0'
8+
pod 'Firebase/CoreOnly', '11.13.0'
99
pod 'Google-Mobile-Ads-SDK', '11.2.0'
1010
pod 'GoogleUserMessagingPlatform', '2.3.0'
1111
end

installations/integration_test/Podfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ use_frameworks! :linkage => :static
55

66
target 'integration_test' do
77
platform :ios, '13.0'
8-
pod 'Firebase/Analytics', '11.10.0'
9-
pod 'Firebase/Installations', '11.10.0'
8+
pod 'Firebase/Analytics', '11.13.0'
9+
pod 'Firebase/Installations', '11.13.0'
1010
end
1111

1212
post_install do |installer|

ios_pod/Podfile

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -3,22 +3,22 @@ platform :ios, '13.0'
33
use_frameworks!
44

55
target 'GetPods' do
6-
pod 'Firebase/Core', '11.10.0'
6+
pod 'Firebase/Core', '11.13.0'
77

88
pod 'Google-Mobile-Ads-SDK', '11.2.0'
99
pod 'GoogleUserMessagingPlatform', '2.3.0'
10-
pod 'Firebase/Analytics', '11.10.0'
11-
pod 'Firebase/AppCheck', '11.10.0'
12-
pod 'Firebase/Auth', '11.10.0'
13-
pod 'Firebase/Crashlytics', '11.10.0'
14-
pod 'Firebase/Database', '11.10.0'
15-
pod 'Firebase/DynamicLinks', '11.10.0'
16-
pod 'Firebase/Firestore', '11.10.0'
17-
pod 'Firebase/Functions', '11.10.0'
18-
pod 'Firebase/Installations', '11.10.0'
19-
pod 'Firebase/Messaging', '11.10.0'
20-
pod 'Firebase/RemoteConfig', '11.10.0'
21-
pod 'Firebase/Storage', '11.10.0'
10+
pod 'Firebase/Analytics', '11.13.0'
11+
pod 'Firebase/AppCheck', '11.13.0'
12+
pod 'Firebase/Auth', '11.13.0'
13+
pod 'Firebase/Crashlytics', '11.13.0'
14+
pod 'Firebase/Database', '11.13.0'
15+
pod 'Firebase/DynamicLinks', '11.13.0'
16+
pod 'Firebase/Firestore', '11.13.0'
17+
pod 'Firebase/Functions', '11.13.0'
18+
pod 'Firebase/Installations', '11.13.0'
19+
pod 'Firebase/Messaging', '11.13.0'
20+
pod 'Firebase/RemoteConfig', '11.13.0'
21+
pod 'Firebase/Storage', '11.13.0'
2222

2323
end
2424

ios_pod/swift_headers/FirebaseAnalytics-Swift.h

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
#if 0
22
#elif defined(__arm64__) && __arm64__
33
// Copyright 2025 Google LLC
4-
// Copied from Firebase iOS SDK 11.10.0.
4+
// Copied from Firebase iOS SDK 11.13.0.
55

6-
// Generated by Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56
7-
// clang-1500.1.0.2.5)
6+
// Generated by Apple Swift version 6.0.3 effective-5.10 (swiftlang-6.0.3.1.10
7+
// clang-1600.0.30.1)
88
#ifndef FIREBASEANALYTICS_SWIFT_H
99
#define FIREBASEANALYTICS_SWIFT_H
1010
#pragma clang diagnostic push
@@ -47,6 +47,8 @@
4747
#include <string.h>
4848
#endif
4949
#if defined(__cplusplus)
50+
#pragma clang diagnostic push
51+
#pragma clang diagnostic ignored "-Wnon-modular-include-in-framework-module"
5052
#if defined(__arm64e__) && __has_include(<ptrauth.h>)
5153
#include <ptrauth.h>
5254
#else
@@ -60,6 +62,7 @@
6062
#endif
6163
#pragma clang diagnostic pop
6264
#endif
65+
#pragma clang diagnostic pop
6366
#endif
6467

6568
#if !defined(SWIFT_TYPEDEFS)
@@ -312,6 +315,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
312315
#pragma clang diagnostic ignored "-Wunknown-pragmas"
313316
#pragma clang diagnostic ignored "-Wnullability"
314317
#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension"
318+
#pragma clang diagnostic ignored "-Wunsafe-buffer-usage"
315319

316320
#if __has_attribute(external_source_symbol)
317321
#pragma push_macro("any")
@@ -338,10 +342,10 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
338342

339343
#elif defined(__x86_64__) && __x86_64__
340344
// Copyright 2025 Google LLC
341-
// Copied from Firebase iOS SDK 11.10.0.
345+
// Copied from Firebase iOS SDK 11.13.0.
342346

343-
// Generated by Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56
344-
// clang-1500.1.0.2.5)
347+
// Generated by Apple Swift version 6.0.3 effective-5.10 (swiftlang-6.0.3.1.10
348+
// clang-1600.0.30.1)
345349
#ifndef FIREBASEANALYTICS_SWIFT_H
346350
#define FIREBASEANALYTICS_SWIFT_H
347351
#pragma clang diagnostic push
@@ -384,6 +388,8 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
384388
#include <string.h>
385389
#endif
386390
#if defined(__cplusplus)
391+
#pragma clang diagnostic push
392+
#pragma clang diagnostic ignored "-Wnon-modular-include-in-framework-module"
387393
#if defined(__arm64e__) && __has_include(<ptrauth.h>)
388394
#include <ptrauth.h>
389395
#else
@@ -397,6 +403,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
397403
#endif
398404
#pragma clang diagnostic pop
399405
#endif
406+
#pragma clang diagnostic pop
400407
#endif
401408

402409
#if !defined(SWIFT_TYPEDEFS)
@@ -649,6 +656,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
649656
#pragma clang diagnostic ignored "-Wunknown-pragmas"
650657
#pragma clang diagnostic ignored "-Wnullability"
651658
#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension"
659+
#pragma clang diagnostic ignored "-Wunsafe-buffer-usage"
652660

653661
#if __has_attribute(external_source_symbol)
654662
#pragma push_macro("any")

ios_pod/swift_headers/FirebaseAuth-Swift.h

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
#if 0
22
#elif defined(__arm64__) && __arm64__
33
// Copyright 2025 Google LLC
4-
// Copied from Firebase iOS SDK 11.10.0.
4+
// Copied from Firebase iOS SDK 11.13.0.
55

6-
// Generated by Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56
7-
// clang-1500.1.0.2.5)
6+
// Generated by Apple Swift version 6.0.3 effective-5.10 (swiftlang-6.0.3.1.10
7+
// clang-1600.0.30.1)
88
#ifndef FIREBASEAUTH_SWIFT_H
99
#define FIREBASEAUTH_SWIFT_H
1010
#pragma clang diagnostic push
@@ -47,6 +47,8 @@
4747
#include <string.h>
4848
#endif
4949
#if defined(__cplusplus)
50+
#pragma clang diagnostic push
51+
#pragma clang diagnostic ignored "-Wnon-modular-include-in-framework-module"
5052
#if defined(__arm64e__) && __has_include(<ptrauth.h>)
5153
#include <ptrauth.h>
5254
#else
@@ -60,6 +62,7 @@
6062
#endif
6163
#pragma clang diagnostic pop
6264
#endif
65+
#pragma clang diagnostic pop
6366
#endif
6467

6568
#if !defined(SWIFT_TYPEDEFS)
@@ -316,6 +319,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
316319
#pragma clang diagnostic ignored "-Wunknown-pragmas"
317320
#pragma clang diagnostic ignored "-Wnullability"
318321
#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension"
322+
#pragma clang diagnostic ignored "-Wunsafe-buffer-usage"
319323

320324
#if __has_attribute(external_source_symbol)
321325
#pragma push_macro("any")
@@ -3079,10 +3083,10 @@ SWIFT_AVAILABILITY(watchos, introduced = 7)
30793083

30803084
#elif defined(__x86_64__) && __x86_64__
30813085
// Copyright 2025 Google LLC
3082-
// Copied from Firebase iOS SDK 11.10.0.
3086+
// Copied from Firebase iOS SDK 11.13.0.
30833087

3084-
// Generated by Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56
3085-
// clang-1500.1.0.2.5)
3088+
// Generated by Apple Swift version 6.0.3 effective-5.10 (swiftlang-6.0.3.1.10
3089+
// clang-1600.0.30.1)
30863090
#ifndef FIREBASEAUTH_SWIFT_H
30873091
#define FIREBASEAUTH_SWIFT_H
30883092
#pragma clang diagnostic push
@@ -3125,6 +3129,8 @@ SWIFT_AVAILABILITY(watchos, introduced = 7)
31253129
#include <string.h>
31263130
#endif
31273131
#if defined(__cplusplus)
3132+
#pragma clang diagnostic push
3133+
#pragma clang diagnostic ignored "-Wnon-modular-include-in-framework-module"
31283134
#if defined(__arm64e__) && __has_include(<ptrauth.h>)
31293135
#include <ptrauth.h>
31303136
#else
@@ -3138,6 +3144,7 @@ SWIFT_AVAILABILITY(watchos, introduced = 7)
31383144
#endif
31393145
#pragma clang diagnostic pop
31403146
#endif
3147+
#pragma clang diagnostic pop
31413148
#endif
31423149

31433150
#if !defined(SWIFT_TYPEDEFS)
@@ -3394,6 +3401,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
33943401
#pragma clang diagnostic ignored "-Wunknown-pragmas"
33953402
#pragma clang diagnostic ignored "-Wnullability"
33963403
#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension"
3404+
#pragma clang diagnostic ignored "-Wunsafe-buffer-usage"
33973405

33983406
#if __has_attribute(external_source_symbol)
33993407
#pragma push_macro("any")

0 commit comments

Comments
 (0)