Thanks to visit codestin.com
Credit goes to github.com

Skip to content

v0.9.0 dbt_github

Choose a tag to compare

@fivetran-data-model-bot fivetran-data-model-bot released this 26 Jun 17:33
· 3 commits to main since this release
26a75e7

PR #63 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 (GitHub Source v0.9.0). 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 `github` in file
`models/src_github.yml`. The `freshness` top-level property should be moved
into the `config` of `github`.

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 GitHub freshness tests, please elect one of the following options:

  1. (Recommended) Upgrade to dbt Core >= 1.9.6
  2. Do not upgrade your installed version of the github package. Pin your dependency on v0.8.1 in your packages.yml file.
  3. Utilize a dbt override to overwrite the package's github source and apply freshness via the previous release top-level property route. This will require you to copy and paste the entirety of the previous release src_github.yml file and add an overrides: github_source property.

Documentation

  • Added Quickstart model counts to README. (#60)
  • Corrected references to connectors and connections in the README. (#60)

Under the Hood:

  • Updates to ensure integration tests use latest version of dbt.

Full Changelog: v0.8.1...v0.9.0