Skip to content

Commit 5f5849d

Browse files
paulb777mikehaney24maksymmalyhin
authored
Merge release 6.21.0 (#5178)
* Update versions for Release 6.21.0 * Libraries should save state if a completion block is requested (#5147) (#5148) * Libraries should save state if a completion block is requested Currently, the onComplete block of sendXEvent:onComplete: is invoked when the event bytes are written to disk. However, if the app crashes before a lifecycle event occurs (trigger GDTCORStorage to serialize to disk), that event if effectively lost because the metadata has all been lost. This change triggers the saving of state of GDTCORStorage and prioritizers (if they implement it) if an onComplete block has been given. * Remove RC from M67 (#5157) * Revert "Migrate from using IID SDK for Remote Config to the new FIS SDK (#5096)" (#5156) (#5159) This reverts commit 887ff82. * Only delete events when package was successfully delivered (#5172) (#5173) * Only delete events when package was successfully delivered * Add unit test to check that retrying a package delivery doesn't delete an event file Co-authored-by: Michael Haney <[email protected]> Co-authored-by: Maksym Malyhin <[email protected]>
1 parent eeced5d commit 5f5849d

8 files changed

+26
-15
lines changed

Firebase.podspec

Lines changed: 8 additions & 8 deletions
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 = '6.20.0'
3+
s.version = '6.21.0'
44
s.summary = 'Firebase for iOS (plus community support for macOS and tvOS)'
55

66
s.description = <<-DESC
@@ -31,12 +31,12 @@ Simplify your iOS development, grow your user base, and monetize more effectivel
3131
s.default_subspec = 'Core'
3232

3333
s.subspec 'Core' do |ss|
34-
ss.ios.dependency 'FirebaseAnalytics', '6.3.1'
34+
ss.ios.dependency 'FirebaseAnalytics', '6.4.0'
3535
ss.dependency 'Firebase/CoreOnly'
3636
end
3737

3838
s.subspec 'CoreOnly' do |ss|
39-
ss.dependency 'FirebaseCore', '6.6.4'
39+
ss.dependency 'FirebaseCore', '6.6.5'
4040
ss.source_files = 'CoreOnly/Sources/Firebase.h'
4141
ss.preserve_paths = 'CoreOnly/Sources/module.modulemap'
4242
if ENV['FIREBASE_POD_REPO_FOR_DEV_POD'] then
@@ -71,12 +71,12 @@ Simplify your iOS development, grow your user base, and monetize more effectivel
7171

7272
s.subspec 'Auth' do |ss|
7373
ss.dependency 'Firebase/CoreOnly'
74-
ss.dependency 'FirebaseAuth', '~> 6.5.0'
74+
ss.dependency 'FirebaseAuth', '~> 6.5.1'
7575
end
7676

7777
s.subspec 'Crashlytics' do |ss|
7878
ss.dependency 'Firebase/CoreOnly'
79-
ss.dependency 'FirebaseCrashlytics', '~> 4.0.0-beta.5'
79+
ss.dependency 'FirebaseCrashlytics', '~> 4.0.0-beta.6'
8080
end
8181

8282
s.subspec 'Database' do |ss|
@@ -86,7 +86,7 @@ Simplify your iOS development, grow your user base, and monetize more effectivel
8686

8787
s.subspec 'DynamicLinks' do |ss|
8888
ss.dependency 'Firebase/CoreOnly'
89-
ss.ios.dependency 'FirebaseDynamicLinks', '~> 4.0.7'
89+
ss.ios.dependency 'FirebaseDynamicLinks', '~> 4.0.8'
9090
end
9191

9292
s.subspec 'Firestore' do |ss|
@@ -101,7 +101,7 @@ Simplify your iOS development, grow your user base, and monetize more effectivel
101101

102102
s.subspec 'InAppMessaging' do |ss|
103103
ss.dependency 'Firebase/CoreOnly'
104-
ss.ios.dependency 'FirebaseInAppMessaging', '~> 0.19.0'
104+
ss.ios.dependency 'FirebaseInAppMessaging', '~> 0.19.1'
105105
ss.ios.deployment_target = '9.0'
106106
end
107107

@@ -123,7 +123,7 @@ Simplify your iOS development, grow your user base, and monetize more effectivel
123123

124124
s.subspec 'Performance' do |ss|
125125
ss.dependency 'Firebase/CoreOnly'
126-
ss.ios.dependency 'FirebasePerformance', '~> 3.1.10'
126+
ss.ios.dependency 'FirebasePerformance', '~> 3.1.11'
127127
end
128128

129129
s.subspec 'RemoteConfig' do |ss|

FirebaseAuth.podspec

Lines changed: 1 addition & 1 deletion
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 = '6.5.0'
3+
s.version = '6.5.1'
44
s.summary = 'The official iOS client for Firebase Authentication (plus community support for macOS and tvOS)'
55

66
s.description = <<-DESC

FirebaseCore.podspec

Lines changed: 2 additions & 2 deletions
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 = '6.6.4'
3+
s.version = '6.6.5'
44
s.summary = 'Firebase Core for iOS (plus community support for macOS and tvOS)'
55

66
s.description = <<-DESC
@@ -40,7 +40,7 @@ Firebase Core includes FIRApp and FIROptions which provide central configuration
4040
s.pod_target_xcconfig = {
4141
'GCC_C_LANGUAGE_STANDARD' => 'c99',
4242
'GCC_PREPROCESSOR_DEFINITIONS' =>
43-
'FIRCore_VERSION=' + s.version.to_s + ' Firebase_VERSION=6.19.0',
43+
'FIRCore_VERSION=' + s.version.to_s + ' Firebase_VERSION=6.21.0',
4444
'HEADER_SEARCH_PATHS' => '"${PODS_TARGET_SRCROOT}"',
4545
'OTHER_CFLAGS' => '-fno-autolink'
4646
}

FirebaseCrashlytics.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'FirebaseCrashlytics'
3-
s.version = '4.0.0-beta.5'
3+
s.version = '4.0.0-beta.6'
44
s.summary = 'Best and lightest-weight crash reporting for mobile, desktop and tvOS.'
55
s.description = 'Firebase Crashlytics helps you track, prioritize, and fix stability issues that erode app quality.'
66
s.homepage = 'https://firebase.google.com/'

FirebaseDynamicLinks.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'FirebaseDynamicLinks'
3-
s.version = '4.0.7'
3+
s.version = '4.0.8'
44
s.summary = 'Firebase DynamicLinks for iOS'
55

66
s.description = <<-DESC

FirebaseInAppMessaging.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'FirebaseInAppMessaging'
3-
s.version = '0.19.0'
3+
s.version = '0.19.1'
44
s.summary = 'Firebase In-App Messaging for iOS'
55

66
s.description = <<-DESC

FirebaseInstallations.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'FirebaseInstallations'
3-
s.version = '1.1.0'
3+
s.version = '1.1.1'
44
s.summary = 'Firebase Installations for iOS'
55

66
s.description = <<-DESC

Releases/Manifests/6.21.0.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"Firebase":"6.21.0",
3+
"FirebaseAuth":"6.5.1",
4+
"FirebaseCore":"6.6.5",
5+
"FirebaseCrashlytics":"4.0.0-beta.6",
6+
"FirebaseDynamicLinks":"4.0.8",
7+
"FirebaseInAppMessaging":"0.19.1",
8+
"FirebaseInstallations":"1.1.1",
9+
"GoogleDataTransport":"5.1.0",
10+
"GoogleDataTransportCCTSupport":"2.0.1"
11+
}

0 commit comments

Comments
 (0)