Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 2.4.0 #29

Merged
merged 1 commit into from
May 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .changes/2.4.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
## dbt-snowflake-query-tags 2.4.0 - May 14, 2024

### Features

- Add raw_code_hash to query comment ([#26](https://github.com/get-select/dbt-snowflake-query-tags/pull/26))
- Add run_started_at to query comment ([#27](https://github.com/get-select/dbt-snowflake-query-tags/pull/27))

### Contributors
- [@bmoore813](https://github.com/bmoore813) (Features)
- [@bisset-a](https://github.com/bisset-a) (Features)
6 changes: 0 additions & 6 deletions .changes/unreleased/Features-20240506-131218.yaml

This file was deleted.

11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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-snowflake-query-tags 2.4.0 - May 14, 2024

### Features

- Add raw_code_hash to query comment ([#26](https://github.com/get-select/dbt-snowflake-query-tags/pull/26))
- Add run_started_at to query comment ([#27](https://github.com/get-select/dbt-snowflake-query-tags/pull/27))

### Contributors
- [@bmoore813](https://github.com/bmoore813) (Features)
- [@bisset-a](https://github.com/bisset-a) (Features)

## dbt-snowflake-query-tags 2.3.3 - January 29, 2024

### Features
Expand Down
2 changes: 1 addition & 1 deletion dbt_project.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
name: 'dbt_snowflake_query_tags'
version: '2.3.3'
version: '2.4.0'
config-version: 2
2 changes: 1 addition & 1 deletion macros/query_comment.sql
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
{%- set comment_dict = extra -%}
{%- do comment_dict.update(
app='dbt',
dbt_snowflake_query_tags_version='2.3.2',
dbt_snowflake_query_tags_version='2.4.0',
dbt_version=dbt_version,
project_name=project_name,
target_name=target.name,
Expand Down
2 changes: 1 addition & 1 deletion macros/query_tags.sql
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@

{%- do query_tag.update(
app='dbt',
dbt_snowflake_query_tags_version='2.3.3',
dbt_snowflake_query_tags_version='2.4.0',
) -%}

{% if thread_id %}
Expand Down
Loading