diff --git a/CHANGELOG.md b/CHANGELOG.md index ef4d166..acf6527 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +# dbt_ad_reporting v1.5.0 + +## Bug Fixes +- Adding the correct variable name in `ad_reporting__url_report` for passthrough metrics. ([PR #96](https://github.com/fivetran/dbt_ad_reporting/pull/96)) + +## Contributors +- [@aleix-cd](https://github.com/aleix-cd) ([PR #96](https://github.com/fivetran/dbt_ad_reporting/pull/96)) + # dbt_ad_reporting v1.4.0 ## 🎉 Feature Enhancement 🎉 diff --git a/dbt_project.yml b/dbt_project.yml index 09f4a87..2a179f0 100644 --- a/dbt_project.yml +++ b/dbt_project.yml @@ -1,5 +1,5 @@ name: 'ad_reporting' -version: '1.4.0' +version: '1.5.0' config-version: 2 diff --git a/integration_tests/dbt_project.yml b/integration_tests/dbt_project.yml index c5a3c8e..6cc1ea7 100644 --- a/integration_tests/dbt_project.yml +++ b/integration_tests/dbt_project.yml @@ -1,5 +1,5 @@ name: 'ad_reporting_integration_tests' -version: '1.4.0' +version: '1.5.0' profile: 'integration_tests' config-version: 2 diff --git a/models/ad_reporting__url_report.sql b/models/ad_reporting__url_report.sql index f468810..a4a040c 100644 --- a/models/ad_reporting__url_report.sql +++ b/models/ad_reporting__url_report.sql @@ -30,7 +30,7 @@ aggregated as ( sum(impressions) as impressions, sum(spend) as spend - {{ fivetran_utils.persist_pass_through_columns(pass_through_variable='ad_reporting__url_passthrough_metrics', transform = 'sum') }} + {{ fivetran_utils.persist_pass_through_columns(pass_through_variable='ad_reporting__ad_passthrough_metrics', transform = 'sum') }} from base {{ dbt_utils.group_by(16) }}