diff --git a/.buildkite/scripts/run_models.sh b/.buildkite/scripts/run_models.sh index f85de5c..0198603 100644 --- a/.buildkite/scripts/run_models.sh +++ b/.buildkite/scripts/run_models.sh @@ -17,7 +17,7 @@ echo `pwd` cd integration_tests dbt deps dbt seed --target "$db" --full-refresh -dbt run --target "$db" --full-refresh --vars '{ad_reporting__facebook_ads_enabled: true, ad_reporting__google_ads_enabled: true, ad_reporting__amazon_ads_enabled: false, ad_reporting__apple_search_ads_enabled: false, ad_reporting__linkedin_ads_enabled: false, ad_reporting__microsoft_ads_enabled: false, ad_reporting__pinterest_ads_enabled: false, ad_reporting__reddit_ads_enabled: false, ad_reporting__snapchat_ads_enabled: true, ad_reporting__tiktok_ads_enabled: false, ad_reporting__twitter_ads_enabled: false}' -dbt test --target "$db" --vars '{ad_reporting__facebook_ads_enabled: true, ad_reporting__google_ads_enabled: true, ad_reporting__amazon_ads_enabled: false, ad_reporting__apple_search_ads_enabled: false, ad_reporting__linkedin_ads_enabled: false, ad_reporting__microsoft_ads_enabled: false, ad_reporting__pinterest_ads_enabled: false, ad_reporting__reddit_ads_enabled: false, ad_reporting__snapchat_ads_enabled: true, ad_reporting__tiktok_ads_enabled: false, ad_reporting__twitter_ads_enabled: false}' +dbt run --target "$db" --full-refresh --vars '{ad_reporting__facebook_ads_enabled: true, ad_reporting__google_ads_enabled: true, ad_reporting__amazon_ads_enabled: false, ad_reporting__apple_search_ads_enabled: false, ad_reporting__linkedin_ads_enabled: false, ad_reporting__microsoft_ads_enabled: true, ad_reporting__pinterest_ads_enabled: false, ad_reporting__reddit_ads_enabled: false, ad_reporting__snapchat_ads_enabled: false, ad_reporting__tiktok_ads_enabled: false, ad_reporting__twitter_ads_enabled: false}' +dbt test --target "$db" --vars '{ad_reporting__facebook_ads_enabled: true, ad_reporting__google_ads_enabled: true, ad_reporting__amazon_ads_enabled: false, ad_reporting__apple_search_ads_enabled: false, ad_reporting__linkedin_ads_enabled: false, ad_reporting__microsoft_ads_enabled: true, ad_reporting__pinterest_ads_enabled: false, ad_reporting__reddit_ads_enabled: false, ad_reporting__snapchat_ads_enabled: false, ad_reporting__tiktok_ads_enabled: false, ad_reporting__twitter_ads_enabled: false}' dbt run-operation fivetran_utils.drop_schemas_automation --target "$db" diff --git a/.gitignore b/.gitignore index 4441b85..bd67031 100644 --- a/.gitignore +++ b/.gitignore @@ -5,4 +5,7 @@ logs/ .DS_Store venv dbt_packages/ -env/ \ No newline at end of file +env/ +integration_tests/package-lock.yml +package-lock.yml +integration_tests/.DS_Store \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 24dcf07..42d3213 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +# dbt_ad_reporting v1.8.0 + +[PR #112](https://github.com/fivetran/dbt_ad_reporting/pull/112) includes the following update: + +## Dependency Updates +- Tiny update which upticks the `microsoft_ads` dependency following a recent major release. Refer to the Microsoft Ads v0.8.0 [release notes](https://github.com/fivetran/dbt_microsoft_ads/releases/tag/v0.8.0) for what exact updates have been included. + # dbt_ad_reporting v1.7.1 ## Bug Fixes - Adjust the severity of the `account_id` test in `ad_reporting__account_report` to `warn`. This is required since Snapchat can hard-delete records from the history tables, but not from the reporting tables. This ensures that accurate statistics are being reported and production pipelines aren't failing. ([PR #20](https://github.com/fivetran/dbt_snapchat_ads/pull/20)) diff --git a/README.md b/README.md index 4c5bcdc..6860351 100644 --- a/README.md +++ b/README.md @@ -480,7 +480,7 @@ vars: ``` ### Change the source table references -If an individual source table has a different name than the package expects, add the table name as it appears in your destination to the respective variable: +If an individual source table has a different name than the package expects, add the table name as it appears in your destination to the respective variable. This is not available for sources in which you are unioning together multiple connectors. > IMPORTANT: See the Apple Store [`dbt_project.yml`](https://github.com/fivetran/dbt_apple_store_source/blob/main/dbt_project.yml) and Google Play [`dbt_project.yml`](https://github.com/fivetran/dbt_google_play_source/blob/main/dbt_project.yml) variable declarations to see the expected names. ```yml @@ -589,10 +589,10 @@ packages: version: [">=0.10.0", "<0.11.0"] - package: fivetran/microsoft_ads - version: [">=0.7.0", "<0.8.0"] + version: [">=0.8.0", "<0.9.0"] - package: fivetran/microsoft_ads_source - version: [">=0.8.0", "<0.9.0"] + version: [">=0.9.0", "<0.10.0"] - package: fivetran/linkedin version: [">=0.8.0", "<0.9.0"] @@ -638,5 +638,4 @@ We highly encourage and welcome contributions to this package. Check out [this p # 🏪 Are there any resources available? - If you encounter any questions or want to reach out for help, please refer to the [GitHub Issue](https://github.com/fivetran/dbt_ad_reporting/issues/new/choose) section to find the right avenue of support for you. -- If you would like to provide feedback to the dbt package team at Fivetran, or would like to request a future dbt package to be developed, then feel free to fill out our [Feedback Form](https://www.surveymonkey.com/r/DQ7K7WW). -- Have questions or want to be part of the community discourse? Create a post in the [Fivetran community](https://community.fivetran.com/t5/user-group-for-dbt/gh-p/dbt-user-group) and our team along with the community can join in on the discussion! +- If you would like to provide feedback to the dbt package team at Fivetran, or would like to request a future dbt package to be developed, then feel free to fill out our [Feedback Form](https://www.surveymonkey.com/r/DQ7K7WW). \ No newline at end of file diff --git a/dbt_project.yml b/dbt_project.yml index 19211d6..28aea74 100644 --- a/dbt_project.yml +++ b/dbt_project.yml @@ -1,5 +1,5 @@ name: 'ad_reporting' -version: '1.7.1' +version: '1.8.0' config-version: 2 diff --git a/integration_tests/dbt_project.yml b/integration_tests/dbt_project.yml index 89edfdd..7e0218c 100644 --- a/integration_tests/dbt_project.yml +++ b/integration_tests/dbt_project.yml @@ -1,5 +1,5 @@ name: 'ad_reporting_integration_tests' -version: '1.7.1' +version: '1.8.0' profile: 'integration_tests' config-version: 2 diff --git a/packages.yml b/packages.yml index 322cf5b..9e96bc0 100644 --- a/packages.yml +++ b/packages.yml @@ -15,7 +15,7 @@ packages: version: [">=0.8.0", "<0.9.0"] - package: fivetran/microsoft_ads - version: [">=0.7.0", "<0.8.0"] + version: [">=0.8.0", "<0.9.0"] - package: fivetran/pinterest version: [">=0.10.0", "<0.11.0"]