From b68d332f1b1e3baf44bf91ca19d39ae01f14d53b Mon Sep 17 00:00:00 2001 From: Kayrnt Date: Sun, 27 Oct 2024 22:56:26 +0000 Subject: [PATCH] Release v0.10.3 --- .changes/unreleased/Fixes-20241026-173247.yaml | 6 ------ .changes/v0.10.3.md | 10 ++++++++++ CHANGELOG.md | 11 +++++++++++ README.md | 2 +- dbt_project.yml | 2 +- macros/set_query_comment.sql | 2 +- 6 files changed, 24 insertions(+), 9 deletions(-) delete mode 100644 .changes/unreleased/Fixes-20241026-173247.yaml create mode 100644 .changes/v0.10.3.md diff --git a/.changes/unreleased/Fixes-20241026-173247.yaml b/.changes/unreleased/Fixes-20241026-173247.yaml deleted file mode 100644 index 44ec6bc..0000000 --- a/.changes/unreleased/Fixes-20241026-173247.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Fixes -body: SAFE_CAST option_value to avoid potential cast errors -time: 2024-10-26T17:32:47.586155+02:00 -custom: - Author: Kayrnt - Issue: "" diff --git a/.changes/v0.10.3.md b/.changes/v0.10.3.md new file mode 100644 index 0000000..4163068 --- /dev/null +++ b/.changes/v0.10.3.md @@ -0,0 +1,10 @@ +## dbt-bigquery-monitoring v0.10.3 - October 27, 2024 + +### Fixes + + + - SAFE_CAST option_value to avoid potential cast errors + +### Contributors +- [@Kayrnt](https://github.com/Kayrnt) + diff --git a/CHANGELOG.md b/CHANGELOG.md index de1300a..109cf19 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.10.3 - October 27, 2024 + +### Fixes + + + - SAFE_CAST option_value to avoid potential cast errors + +### Contributors +- [@Kayrnt](https://github.com/Kayrnt) + + ## dbt-bigquery-monitoring v0.10.2 - October 26, 2024 ### Fixes diff --git a/README.md b/README.md index 976de91..158543b 100644 --- a/README.md +++ b/README.md @@ -65,7 +65,7 @@ Add the following to your `packages.yml` file: ```yml {"id":"01J6QQ78T6KQCXF8VPNH8BXBYM"} packages: - package: bqbooster/dbt_bigquery_monitoring - version: 0.10.2 + version: 0.10.3 ``` ### Set up an output dataset diff --git a/dbt_project.yml b/dbt_project.yml index 4dbc2fa..d18dbe6 100644 --- a/dbt_project.yml +++ b/dbt_project.yml @@ -1,5 +1,5 @@ name: "dbt_bigquery_monitoring" -version: "0.10.2" +version: "0.10.3" require-dbt-version: [">=1.3.0", "<2.0.0"] config-version: 2 diff --git a/macros/set_query_comment.sql b/macros/set_query_comment.sql index 9c8dd65..07dac6f 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.10.2", + dbt_bigquery_monitoring_version="0.10.3", dbt_version=dbt_version, project_name=project_name, target_name=target.name,