diff --git a/.changes/unreleased/Fixes-20250106-153152.yaml b/.changes/unreleased/Fixes-20250106-153152.yaml deleted file mode 100644 index 4a84fc8..0000000 --- a/.changes/unreleased/Fixes-20250106-153152.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Fixes -body: Fix DBT_BQ_MONITORING_GCP_PROJECTS being required while it should not for region mode -time: 2025-01-06T15:31:52.975763+01:00 -custom: - Author: Kayrnt - Issue: "" diff --git a/.changes/v0.17.2.md b/.changes/v0.17.2.md new file mode 100644 index 0000000..25da7e6 --- /dev/null +++ b/.changes/v0.17.2.md @@ -0,0 +1,10 @@ +## dbt-bigquery-monitoring v0.17.2 - January 06, 2025 + +### Fixes + + + - Fix DBT_BQ_MONITORING_GCP_PROJECTS being required while it should not for region mode + +### Contributors +- [@Kayrnt](https://github.com/Kayrnt) + diff --git a/CHANGELOG.md b/CHANGELOG.md index f0d36e6..12248d4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,17 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html), and is generated by [Changie](https://github.com/miniscruff/changie). +## dbt-bigquery-monitoring v0.17.2 - January 06, 2025 + +### Fixes + + + - Fix DBT_BQ_MONITORING_GCP_PROJECTS being required while it should not for region mode + +### Contributors +- [@Kayrnt](https://github.com/Kayrnt) + + ## dbt-bigquery-monitoring v0.17.1 - January 05, 2025 ### Fixes diff --git a/dbt_project.yml b/dbt_project.yml index 355a3c1..7569e5f 100644 --- a/dbt_project.yml +++ b/dbt_project.yml @@ -1,5 +1,5 @@ name: "dbt_bigquery_monitoring" -version: "0.17.1" +version: "0.17.2" require-dbt-version: [">=1.3.0", "<2.0.0"] config-version: 2 diff --git a/docs/installation.md b/docs/installation.md index 900ac7a..cd63393 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -12,7 +12,7 @@ Add the following to your `packages.yml` file: ```yml packages: - package: bqbooster/dbt_bigquery_monitoring - version: 0.17.1 + version: 0.17.2 ``` ## Set up an output dataset diff --git a/macros/set_query_comment.sql b/macros/set_query_comment.sql index 48c402d..ff328c8 100644 --- a/macros/set_query_comment.sql +++ b/macros/set_query_comment.sql @@ -6,7 +6,7 @@ {%- set comment_dict = {} -%} {%- do comment_dict.update( app='dbt', - dbt_bigquery_monitoring_version="0.17.1", + dbt_bigquery_monitoring_version="0.17.2", dbt_version=dbt_version | default(''), project_name=project_name | default(''), target_name=target.name | default(''),