[](https://cocoapods.org/pods/GoogleDataTransport)
[](https://cocoapods.org/pods/GoogleDataTransport)
[](https://cocoapods.org/pods/GoogleDataTransport)
[![Actions Status][gh-datatransport-badge]][gh-actions]
# GoogleDataTransport
This library is for internal Google use only. It allows the logging of data and
telemetry from Google SDKs.
## Integration Testing
These instructions apply to minor and patch version updates. Major versions need
a customized adaptation.
After the CI is green:
* Determine the next version for release by checking the
[tagged releases](https://github.com/google/GoogleDataTransport/tags).
Ensure that the next release version keeps the Swift PM and CocoaPods versions in sync.
* Verify that the releasing version is the latest entry in the [CHANGELOG.md](CHANGELOG.md),
updating it if necessary.
* Update the version in the podspec to match the latest entry in the [CHANGELOG.md](CHANGELOG.md)
* Checkout the `main` branch and ensure it is up to date.
```console
git checkout main
git pull
```
* Add the CocoaPods tag (`{version}` will be the latest version in the [podspec](GoogleDataTransport.podspec#L3))
```console
git tag CocoaPods-{version}
git push origin CocoaPods-{version}
```
* Push the podspec to the designated repo
* If this version of GDT is intended to launch **before or with** the next Firebase release:
Push to SpecsStaging
```console
pod repo push --skip-tests staging GoogleDataTransport.podspec
```
If the command fails with `Unable to find the 'staging' repo.`, add the staging repo with:
```console
pod repo add staging git@github.com:firebase/SpecsStaging.git
```
Push to SpecsDev
```console
pod repo push --skip-tests dev GoogleDataTransport.podspec
```
If the command fails with `Unable to find the 'dev' repo.`, add the dev repo with:
```console
pod repo add dev git@github.com:firebase/SpecsDev.git
```
/google/data/ro/teams/copybara/copybara third_party/firebase/ios/Releases/GoogleDataTransport/copy.bara.sky \ --piper-description-behavior=OVERWRITE \ --destination-cl=YOUR_CL gdt## Publishing The release process is as follows: 1. [Tag and release for Swift PM](#swift-package-manager) 2. [Publish to CocoaPods](#cocoapods) 3. [Create GitHub Release](#create-github-release) 4. [Perform post release cleanup](#post-release-cleanup) ### Swift Package Manager By creating and [pushing a tag](https://github.com/google/GoogleDataTransport/tags) for Swift PM, the newly tagged version will be immediately released for public use. Given this, please verify the intended time of release for Swift PM. * Add a version tag for Swift PM ```console git tag {version} git push origin {version} ``` *Note: Ensure that any inflight PRs that depend on the new `GoogleDataTransport` version are updated to point to the newly tagged version rather than a checksum.* ### CocoaPods * Publish the newly versioned pod to CocoaPods It's recommended to point to the `GoogleDataTransport.podspec` in `staging` to make sure the correct spec is being published. ```console pod trunk push ~/.cocoapods/repos/staging/GoogleDataTransport.podspec --skip-tests ``` The pod push was successful if the above command logs: `🚀 GoogleDataTransport ({version}) successfully published`. In addition, a new commit that publishes the new version (co-authored by [CocoaPodsAtGoogle](https://github.com/CocoaPodsAtGoogle)) should appear in the [CocoaPods specs repo](https://github.com/CocoaPods/Specs). Last, the latest version should be displayed on [GoogleDataTransport's CocoaPods page](https://cocoapods.org/pods/GoogleDataTransport). ### [Create GitHub Release](https://github.com/google/GoogleDataTransport/releases/new/) Update the [release template](https://github.com/google/GoogleDataTransport/releases/new/)'s **Tag version** and **Release title** fields with the latest version. In addition, reference the [Release Notes](./CHANGELOG.md) in the release's description. See [this release](https://github.com/google/GoogleDataTransport/releases/edit/9.0.1) for an example. *Don't forget to perform the [post release cleanup](#post-release-cleanup)!* ### Post Release Cleanup