PR #23 includes the following updates:
Breaking Change for dbt Core < 1.9.6
Note: This is not relevant to Fivetran Quickstart users.
Migrated freshness
from a top-level source property to a source config
in alignment with recent updates from dbt Core (Source PR #24). This will resolve the following deprecation warning that users running dbt >= 1.9.6 may have received:
[WARNING]: Deprecated functionality
Found `freshness` as a top-level property of `amazon_ads` in file
`models/src_amazon_ads.yml`. The `freshness` top-level property should be moved
into the `config` of `amazon_ads`.
IMPORTANT: Users running dbt Core < 1.9.6 will not be able to utilize freshness tests in this release or any subsequent releases, as older versions of dbt will not recognize freshness as a source config
and therefore not run the tests.
If you are using dbt Core < 1.9.6 and want to continue running Amazon Ads freshness tests, please elect one of the following options:
- (Recommended) Upgrade to dbt Core >= 1.9.6
- Do not upgrade your installed version of the
amazon_ads
package. Pin your dependency on v0.4.0 in yourpackages.yml
file. - Utilize a dbt override to overwrite the package's
amazon_ads
source and apply freshness via the old top-level property route. This will require you to copy and paste the entirety of thesrc_amazon_ads.yml
file and add anoverrides: amazon_ads_source
property.
Under the Hood
- Updated the package maintainer PR template.
Documentation
- Added Quickstart model counts to README. (#21)
- Corrected references to connectors and connections in the README. (#21)
- Updated LICENSE.
- Updated README headers.
Full Changelog: v0.4.0...v0.5.0