This repository was archived by the owner on Jan 15, 2026. It is now read-only.
PR #20 includes the following updates:
Breaking Change for dbt Core < 1.9.6
Note: This is not relevant to Fivetran Quickstart users.
Migratedfreshnessfrom a top-level source property to a sourceconfigin alignment with recent updates from dbt Core. 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 `google_play` in file
`models/src_google_play.yml`. The `freshness` top-level property should be moved
into the `config` of `google_play`.
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 Google Play 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
google_play_sourcepackage. Pin your dependency on v0.4.0 in yourpackages.ymlfile. - Utilize a dbt override to overwrite the package's
google_playsource and apply freshness via the previous release top-level property route. This will require you to copy and paste the entirety of the previous releasesrc_google_play.ymlfile and add anoverrides: google_play_sourceproperty.
Documentation
- Corrected references to connectors and connections in the README. (#17)
Under the Hood
- Updates to ensure integration tests use latest version of dbt.
Full Changelog: v0.4.0...v0.5.0