You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+7
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,10 @@
1
+
# dbt_ad_reporting v0.8.0
2
+
## 🚨 Breaking Changes 🚨
3
+
- The `api_source` variable for the Google Ads package is now defaulted to `google_ads` as opposed to `adwords`. The Adwords API has since been deprecated by Google and is now no longer the standard API for the Google Ads connector. Please ensure you are using a Google Ads API version of the Fivetran connector before upgrading this package. ([#53](https://github.com/fivetran/dbt_ad_reporting/pull/53))
4
+
- Please note, the `adwords` version of this package will be fully removed from the package in August of 2022. This means, models under `models/adwords_connector` will be removed in favor of `models/google_ads_connector` models.
5
+
6
+
## Updates
7
+
- The `ad_reporting` final model is now materialized in a schema `<target_schema>_ad_reporting` by default. This may be overwritten if desired. ([#53](https://github.com/fivetran/dbt_ad_reporting/pull/53))
1
8
# dbt_ad_reporting v0.7.0
2
9
## 🚨 Breaking Changes 🚨
3
10
- The Google Ads dependency has been updated to now reference the latest version of the `dbt_google_ads` package (v0.6.0). This version of the package incorporates new and modified tables within the `Google Ads API` version of the connector. For more information, refer to the relevant [dbt_google_ads](https://github.com/fivetran/dbt_google_ads_source/releases/tag/v0.6.0) and [dbt_google_ads_source](https://github.com/fivetran/dbt_google_ads/releases/tag/v0.6.0) v0.6.0 release notes.
Copy file name to clipboardExpand all lines: README.md
+7-6
Original file line number
Diff line number
Diff line change
@@ -30,7 +30,7 @@ Include in your `packages.yml`
30
30
```yaml
31
31
packages:
32
32
- package: fivetran/ad_reporting
33
-
version: [">=0.7.0", "<0.8.0"]
33
+
version: [">=0.8.0", "<0.9.0"]
34
34
35
35
```
36
36
@@ -114,10 +114,9 @@ models:
114
114
enabled: false
115
115
```
116
116
### Google Ads and Adwords API Configuration
117
-
This package allows users to leverage either the Adwords API or the Google Ads API if you have enabled the Google Ads connector. You will be able to determine which API your Google Ads connector is using by navigating within your Fivetran UI to the `setup` tab -> `edit connection details` link -> and reference the `API configuration` used. You will want to refer to the respective configuration steps below based off the API used by your connector.
117
+
This package allows users to leverage either the Adwords API or the Google Ads API. You will be able to determine which API your connector is using by navigating within your Fivetran UI to the `setup` tab -> `edit connection details` link -> and reference the `API configuration` used. You will want to refer to the respective configuration steps below based off the API used by your connector. You may set the api type by using the below config in your root `dbt_project.yml`.
118
118
119
-
#### Google Ads API
120
-
If your Google Ads connector is setup using the Google Ads API then you will need to configure your `dbt_project.yml` with the below variable:
119
+
> **Note**: As of April, 2022 all Fivetran Google Ads connectors leverage the Google Ads API rather than Adwords. Additionally, please be aware that the Adwords API version of the package will be sunset in August of 2022.
121
120
122
121
```yml
123
122
# dbt_project.yml
@@ -126,10 +125,10 @@ If your Google Ads connector is setup using the Google Ads API then you will nee
126
125
config-version: 2
127
126
128
127
vars:
129
-
api_source: google_ads ## adwords by default and is case sensitive!
128
+
api_source: google_ads ## google_ads by default, but may be changed to 'adwords' if using a previous version of the connector.
130
129
```
131
130
#### Adwords API
132
-
If your Google Ads connector is setup using the Adwords API (default) then you will want to follow the steps outlined in the [dbt_google_ads](https://github.com/fivetran/dbt_google_ads#adwords-api-configuration) package for configuring your package to leverage the adwords API.
131
+
If your Google Ads connector is setup using the Adwords API (no longer default) then you will want to follow the steps outlined in the [dbt_google_ads](https://github.com/fivetran/dbt_google_ads#adwords-api-configuration) package for configuring your package to leverage the adwords API.
133
132
134
133
### Data Location
135
134
@@ -172,6 +171,8 @@ By default this package will build all models in your <target_schema>. This beh
0 commit comments