-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Migrate transform:
callsites and introduce breaking version of GDT (9.0)
#7899
Conversation
For this type of change, which CHANGELOGs should be modified? The FirebaseCore/CHANGELOG or the CHANGELOGs that correspond to specs that have been changed? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please push GDT 9.0 to SpecsDev and rerun tests
Only one overall Firebase changelog is needed in the FirebaseCore CHANGELOG
Coverage ReportAffected SDKsNo changes between base commit (35f97e4) and head commit (90fc05a). Test Logs
|
To fix the CI failure, https://github.com/firebase/firebase-ios-sdk/blob/master/FirebaseMLModelDownloader/Apps/Sample/Podfile should be updated to get FirebaseCoreDiagnostics from the local repo - similar syntax to https://github.com/firebase/firebase-ios-sdk/blob/master/FirebaseMLModelDownloader/Apps/Sample/Podfile#L8 |
@@ -6,6 +6,7 @@ source 'https://github.com/firebase/SpecsStaging.git' | |||
source 'https://cdn.cocoapods.org/' | |||
|
|||
pod 'FirebaseMLModelDownloader', :path => '../../../' | |||
pod 'FirebaseCoreDiagnostics', :path => '../../../' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed CI failure
cc @visumickey |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for making this change. LGTM!
Can address any additional feedback in a subsequent PR. |
• There is an upcoming breaking change in GDT (8.4 -> 9.0) where the
transform:
API has been renamed totransformGDTEvent:
to avoid collisions with one of Apple's private APIs.This PR prepares for this change by:
• Migrating callsites to the new API
• Updating specs to point to next major version of GDT (9.0)
This is planned to be a part of Firebase 8.
Fixes #7177