Releases: get-select/dbt-snowflake-monitoring
Releases · get-select/dbt-snowflake-monitoring
3.0.0
dbt-snowflake-monitoring 3.0.0 - February 26, 2023
After attempting to use only query comments or query tags in versions 1 and 2, we've learned we actually need both. The reasons for that are:
- The
is_incremental
macro is only available from within the query tag dbt context, and is needed to determine whether a model run is incremental or not. - Query tags have a maximum character limit of 2000, which is easily exceeded by a list of refs containing more than a few models.
To upgrade from 2.x.x, follow the latest instructions in the Quickstart. The package is still able to process query metadata generated by previous versions of the package, so no data will be lost on upgrade.
Breaking Changes
- Use query comments and query tags to avoid query tag character limit (#87)
2.0.2
2.0.1
2.0.0
dbt-snowflake-monitoring 2.0.0 - February 13, 2023
The most significant change in 2.0.0 is using query tags instead of comments to attach dbt metadata to queries. To upgrade from previous versions:
- Remove the query comment configuration from
dbt_project.yml
- Follow the instructions to configure the query tag in the Quickstart.
Breaking Changes
- Switch to using query tags instead of comments (#78)