- Updating
ad_reporting_metrics.yml
to be up to date with dbt Metrics documentation (PR #82)
- Enabling additional Snapchat Ads columns in
ad_reporting__url_report
that were previously mapped to null values. (#81)- These columns are: ad_group_id (ad_squad_id), ad_group_name (ad_squad_name), campaign_id and campaign_name.
- Swapped out
calculation_method: expression
forcalculation_method: derived
for derived metrics
PR #75 includes the following new features:
- Amazon Ads has officially been released and added to the Ad Reporting package.
- Your Amazon Ad data can now be rolled into the below models:
ad_reporting__account_report
ad_reporting__campaign_report
ad_reporting__ad_group_report
ad_reporting__ad_report
ad_reporting__search_report
ad_reporting__keyword_report
- Documentation has been updated to include Amazon Ads information.
Note: If you are NOT using Amazon Ads, add the below variable to your
dbt_project.yml
to disable the Amazon Ads models.
vars:
ad_reporting__amazon_ads_enabled: False ## True by default
PR #66 includes the following breaking changes:
- Dispatch update for dbt-utils to dbt-core cross-db macros migration. Specifically
{{ dbt_utils.<macro> }}
have been updated to{{ dbt.<macro> }}
for the below macros:any_value
bool_or
cast_bool_to_text
concat
date_trunc
dateadd
datediff
escape_single_quotes
except
hash
intersect
last_day
length
listagg
position
replace
right
safe_cast
split_part
string_literal
type_bigint
type_float
type_int
type_numeric
type_string
type_timestamp
array_append
array_concat
array_construct
- For
current_timestamp
andcurrent_timestamp_in_utc
macros, the dispatch AND the macro names have been updated to the below, respectively:dbt.current_timestamp_backcompat
dbt.current_timestamp_in_utc_backcompat
dbt_utils.surrogate_key
has also been updated todbt_utils.generate_surrogate_key
. Since the method for creating surrogate keys differ, we suggest all users do afull-refresh
for the most accurate data. For more information, please refer to dbt-utils release notes for this update.- Dependencies on
fivetran/fivetran_utils
have been upgraded, previously[">=0.3.0", "<0.4.0"]
now[">=0.4.0", "<0.5.0"]
. - Metric attirbutes have been renamed to be consistent with the latest version of dbt-metrics:
sql
->expression
andtype
->calculation_method
- Added ability for a user to allow records having nulls in url fields to be included in the
ad_reporting__url_report
and the underlying*url_report
models. This is done by setting the below variable toFalse
in yourdbt_project.yml
file. (#72)
vars:
ad_reporting__url_report__using_null_filter: False # Use this variable to include null urls for ALL upstream ad platform packages enabled in your project. Default is True.
- Updated README with this information. (#72)
- Disabled the
not_null
test forad_reporting__url_report
when null urls are allowed. (#72) - Updated this package's
integration_tests/seeds/microsoft_ads_campaign_performance_daily_report_data
in light of PR #23 ondbt_microsoft_ads_source
.(#68)
- The
keyword_id
field (which is a surrogate key generated from the combination of 'account_id', 'line_item_id', 'segment', and 'placement' fields within the Twitter Ads source) has been added to thead_reporting__keyword_report
model for the Twitter Ads platform. (#71)
- The
not_null
test on thead_reporting__keyword_report
has been adjusted to be tested on thekeyword_id
as opposed to thekeyword_text
. This is needed as there may be times where keyword historical records may be removed and lose reference in an upstream join. As such, the text may be lost and the null test should be applied to the ID instead. (#71)
- @clay-walker for being instrumental in understanding and addressing this issue. (#63)
- Updated
twitter_ads__using_keywords
to have consistent defaults. (#70)
PR #57 incorporates the following change:
- The package now includes a set of pre-defined metrics related to clicks, impressions, and spend (definitions here).
- Refer to the README for the included metrics and instructions on how to use them.
- Note: This requires you to manually add a dependency on the dbt metrics package to use.
PR #60 incorporates the following change:
- The LinkedIn Ads schema and database variables were incorrectly documented within the README. The README has been updated to reflect the correct variable names.
linkedin_schema
has been properly updated to reflectlinkedin_ads_schema
linkedin_database
has been updated to reflectlinkedin_ads_database
.
PR #54 incorporates these breaking changes:
- The previous
ad_reporting
model has been renamed toad_reporting__url_report
and will only include records that have non-null url values for more information on specific filters please refer to each platform package'surl_report
model.
PR #54 includes the following new features:
- Apple Search Ads has officially been released and added to Ad Reporting.
- In addition to the
ad_reporting__url_report
model update, we have added five new models:ad_reporting__account_report
ad_reporting__campaign_report
ad_reporting__ad_group_report
ad_reporting__ad_report
ad_reporting__keyword_search_report
- This package now leverages
ad_reporting__<platform>_enabled
variables to enable/disable all upstream packages and respective models all in one place. - New corresponding documentation and updated docs for new models.
- This package leverages several different macros in order to successfully build each model and features a
macros_docs.yml
within themacros
directory that provides details for each macro.
- The
api_source
variable for the Google Ads package is now defaulted togoogle_ads
as opposed toadwords
. 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)- Please note, the
adwords
version of this package will be fully removed from the package in August of 2022. This means, models undermodels/adwords_connector
will be removed in favor ofmodels/google_ads_connector
models.
- Please note, the
- The
ad_reporting
final model is now materialized in a schema<target_schema>_ad_reporting
by default. This may be overwritten if desired. (#53)
- 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 theGoogle Ads API
version of the connector. For more information, refer to the relevant dbt_google_ads and dbt_google_ads_source v0.6.0 release notes.
TikTok Ads has been added as a dependency and is enabled by default. Be sure to disable the models via the README if you do not have a TikTok Ads connector.
- Added the TikTok Ads package to be included in the final
ad_reporting
model. (#36)
🎉 dbt v1.0.0 Compatibility Pre Release 🎉 An official dbt v1.0.0 compatible version of the package will be released once existing feature/bug PRs are merged.
- Adjusts the
require-dbt-version
to now be within the range [">=1.0.0", "<2.0.0"]. Additionally, the package has been updated for dbt v1.0.0 compatibility. If you are using a dbt version <1.0.0, you will need to upgrade in order to leverage the latest version of the package.- For help upgrading your package, I recommend reviewing this GitHub repo's Release Notes on what changes have been implemented since your last upgrade.
- For help upgrading your dbt project to dbt v1.0.0, I recommend reviewing dbt-labs upgrading to 1.0.0 docs for more details on what changes must be made.
- Upgrades the package dependencies to refer to the latest individual ad package versions. Additionally, the latest individual ad package versions have a dependency on the latest
dbt_fivetran_utils
. Further, the latestdbt_fivetran_utils
package also has a dependency ondbt_utils
[">=0.8.0", "<0.9.0"].- Please note, if you are installing a version of
dbt_utils
in yourpackages.yml
that is not in the range above then you will encounter a package dependency error.
- Please note, if you are installing a version of
- Added the
account_name
andaccount_id
to thestg_snapchat_ads
model. This will allow for the relevant Snapchat Ads account information to flow downstream into the finalad_reporting
model. (#30)
- Cast the
account_id
andexternal_account_id
as strings within thestg_google_ads
model.
Refer to the relevant release notes on the Github repository for specific details for the previous releases. Thank you!