Skip to content

Commit 89a2769

Browse files
Merging the 6.8.0 release into master (#3783)
* Update versions for Release 6.8.0 * RemoteConfig fix pod spec lint (#3715) (#3716) * ABTesting: add protos to private headers. * RemoteConfig: #import <FirebaseABTesting/ExperimentPayload.pbobjc.h> * ./scripts/style.sh * Remote Config `pod spec lint` fixes (#3717) (#3718) * Fix ExperimentPayload.pbobjc.h imports * RemoteConfig tests: add missing headers to spec. * Revert ExperimentPayload.pbobjc.h import for ABTesting sources. * Add FDL to M55 (#3724) * Remove references to UIWebView from DynamicLinks to comply with Apple "ITMS-90809: Deprecated API Usage" (#3723) * Add FDL to M55 * Fix accessing a destroyed object (#3721) (#3725) This was caused by running under Asan with XCode 11. Apparently, previous versions of XCode cannot catch it (which is why Travis is passing, apparently). Also: * enable "Detect use of stack after return" option for Asan. AFAIU, it can only be enabled in the scheme. It's already enabled for unit tests, this PR additionally enables it for integration tests; * make Asan failures fail Travis build. They were originally not considered blocking due to some sporadic failures. I haven't seen those for some time, and worst case scenario, we can revert this change. * Cherry pick GDT changes for 6.8.0 and increment versions (#3770) * Release 6.8.0: cherry pick of #3764 and #3766 (#3772) * Gate access to cached instances. (#3766) * Gate access to cached instances. This is causing an issue in #3728. Hopefully this will fix it, but no repro is available yet to test. There's still an underlying race condition where a `creationBlock` could be called twice for a component that is supposed to cache the instance returned, but that should be addressed in a follow up PR. * Review feedback. * Iterate from array copy in `latestExperimentStartTimestampBetweenTimestamp:` (#3764) * Release 6.8.0 cherry pick: conflicting Dynamic Links changelog changes. (#3790) * Update FDL CHANGELOG (#3781) * Issue number, not PR number (#3785)
1 parent d440418 commit 89a2769

12 files changed

+23
-13
lines changed

Example/Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ target 'Core_Example_iOS' do
2121
# The next line is the forcing function for the Firebase pod. The Firebase
2222
# version's subspecs should depend on the component versions in the
2323
# corresponding podspec's in this repo.
24-
pod 'Firebase/CoreOnly', '6.7.0'
24+
pod 'Firebase/CoreOnly', '6.8.0'
2525

2626
target 'Core_Tests_iOS' do
2727
inherit! :search_paths

FirebaseABTesting.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 = 'FirebaseABTesting'
3-
s.version = '3.1.0'
3+
s.version = '3.1.1'
44
s.summary = 'Firebase ABTesting for iOS'
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.2.1'
3+
s.version = '6.2.2'
44
s.summary = 'Firebase Core for iOS (plus community support for macOS and tvOS)'
55

66
s.description = <<-DESC
@@ -39,7 +39,7 @@ Firebase Core includes FIRApp and FIROptions which provide central configuration
3939
s.pod_target_xcconfig = {
4040
'GCC_C_LANGUAGE_STANDARD' => 'c99',
4141
'GCC_PREPROCESSOR_DEFINITIONS' =>
42-
'FIRCore_VERSION=' + s.version.to_s + ' Firebase_VERSION=6.7.0',
42+
'FIRCore_VERSION=' + s.version.to_s + ' Firebase_VERSION=6.8.0',
4343
'OTHER_CFLAGS' => '-fno-autolink'
4444
}
4545
s.test_spec 'unit' do |unit_tests|

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.3'
3+
s.version = '4.0.4'
44
s.summary = 'Firebase DynamicLinks for iOS'
55

66
s.description = <<-DESC

FirebaseFirestore.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 = 'FirebaseFirestore'
3-
s.version = '1.4.5'
3+
s.version = '1.5.0'
44
s.summary = 'Google Cloud Firestore 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.15.3'
3+
s.version = '0.15.4'
44
s.summary = 'Firebase In-App Messaging for iOS'
55

66
s.description = <<-DESC

FirebaseInstanceID.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 = 'FirebaseInstanceID'
3-
s.version = '4.2.3'
3+
s.version = '4.2.4'
44
s.summary = 'Firebase InstanceID for iOS'
55

66
s.description = <<-DESC

FirebaseMessaging.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 = 'FirebaseMessaging'
3-
s.version = '4.1.3'
3+
s.version = '4.1.4'
44
s.summary = 'Firebase Messaging for iOS'
55

66
s.description = <<-DESC

Firestore/Example/Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ target 'Firestore_Example_iOS' do
9696
# The next line is the forcing function for the Firebase pod. The Firebase
9797
# version's subspecs should depend on the component versions in their
9898
# corresponding podspecs.
99-
pod 'Firebase/CoreOnly', '6.7.0'
99+
pod 'Firebase/CoreOnly', '6.8.0'
100100

101101
configure_local_pods()
102102

GoogleDataTransport.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 = 'GoogleDataTransport'
3-
s.version = '1.1.3'
3+
s.version = '1.2.0'
44
s.summary = 'Google iOS SDK data transport.'
55

66
s.description = <<-DESC

0 commit comments

Comments
 (0)