diff --git a/.changes/unreleased/Docs-20250113-213702.yaml b/.changes/unreleased/Docs-20250113-213702.yaml deleted file mode 100644 index 6e974b2..0000000 --- a/.changes/unreleased/Docs-20250113-213702.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Docs -body: Adjust the documentation to match the update of information schema materialization -time: 2025-01-13T21:37:02.871468+01:00 -custom: - Author: Kayrnt - Issue: "" diff --git a/.changes/unreleased/Fixes-20250113-213236.yaml b/.changes/unreleased/Fixes-20250113-213236.yaml deleted file mode 100644 index 1ecb5ac..0000000 --- a/.changes/unreleased/Fixes-20250113-213236.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Fixes -body: Fix the full refresh mode for information_schema table that are not partitioned -time: 2025-01-13T21:32:36.651386+01:00 -custom: - Author: Kayrnt - Issue: "" diff --git a/.changes/unreleased/Fixes-20250113-222259.yaml b/.changes/unreleased/Fixes-20250113-222259.yaml deleted file mode 100644 index 5f902cd..0000000 --- a/.changes/unreleased/Fixes-20250113-222259.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Fixes -body: Fix the number of inserts for stats by using the right statement as main -time: 2025-01-13T22:22:59.91323+01:00 -custom: - Author: Kayrnt - Issue: "" diff --git a/.changes/unreleased/Under the Hood-20250113-213755.yaml b/.changes/unreleased/Under the Hood-20250113-213755.yaml deleted file mode 100644 index 4903a62..0000000 --- a/.changes/unreleased/Under the Hood-20250113-213755.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Under the Hood -body: Rework the structure of models to tag only the monitoring models -time: 2025-01-13T21:37:55.719933+01:00 -custom: - Author: Kayrnt - Issue: "" diff --git a/.changes/v0.18.1.md b/.changes/v0.18.1.md new file mode 100644 index 0000000..0373cba --- /dev/null +++ b/.changes/v0.18.1.md @@ -0,0 +1,22 @@ +## dbt-bigquery-monitoring v0.18.1 - January 13, 2025 + +### Fixes + + + - Fix the full refresh mode for information_schema table that are not partitioned + + - Fix the number of inserts for stats by using the right statement as main + +### Docs + + + - Adjust the documentation to match the update of information schema materialization + +### Under the Hood + + + - Rework the structure of models to tag only the monitoring models + +### Contributors +- [@Kayrnt](https://github.com/Kayrnt) + diff --git a/CHANGELOG.md b/CHANGELOG.md index 78843b9..5dc1d60 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,29 @@ 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.18.1 - January 13, 2025 + +### Fixes + + + - Fix the full refresh mode for information_schema table that are not partitioned + + - Fix the number of inserts for stats by using the right statement as main + +### Docs + + + - Adjust the documentation to match the update of information schema materialization + +### Under the Hood + + + - Rework the structure of models to tag only the monitoring models + +### Contributors +- [@Kayrnt](https://github.com/Kayrnt) + + ## dbt-bigquery-monitoring v0.18.0 - January 13, 2025 ### Features diff --git a/dbt_project.yml b/dbt_project.yml index dfd0e1e..713933f 100644 --- a/dbt_project.yml +++ b/dbt_project.yml @@ -1,5 +1,5 @@ name: "dbt_bigquery_monitoring" -version: "0.18.0" +version: "0.18.1" require-dbt-version: [">=1.3.0", "<2.0.0"] config-version: 2 diff --git a/docs/installation.md b/docs/installation.md index 9f1df49..7eddec4 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.18.0 + version: 0.18.1 ``` ## Set up an output dataset diff --git a/macros/set_query_comment.sql b/macros/set_query_comment.sql index d1d3b5a..7f408eb 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.18.0", + dbt_bigquery_monitoring_version="0.18.1", dbt_version=dbt_version | default(''), project_name=project_name | default(''), target_name=target.name | default(''),