diff --git a/.changes/5.2.0.md b/.changes/5.2.0.md new file mode 100644 index 0000000..5691301 --- /dev/null +++ b/.changes/5.2.0.md @@ -0,0 +1,9 @@ +## dbt-snowflake-monitoring 5.2.0 - May 28, 2024 + +### Features + +- Add root_query_id, parent_query_id to stg_access_history ([#156](https://github.com/get-select/dbt-snowflake-monitoring/pull/156)) + +### Contributors +- [@tnightengale](https://github.com/tnightengale) (Features) + diff --git a/CHANGELOG.md b/CHANGELOG.md index 28b513b..4c06e8f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,16 @@ 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-monitoring 5.2.0 - May 28, 2024 + +### Features + +- Add root_query_id, parent_query_id to stg_access_history ([#156](https://github.com/get-select/dbt-snowflake-monitoring/pull/156)) + +### Contributors +- [@tnightengale](https://github.com/tnightengale) (Features) + + ## dbt-snowflake-monitoring 5.1.2 - May 23, 2024 ### Fixes diff --git a/dbt_project.yml b/dbt_project.yml index d609f51..a06cc4b 100644 --- a/dbt_project.yml +++ b/dbt_project.yml @@ -1,5 +1,5 @@ name: 'dbt_snowflake_monitoring' -version: '5.1.2' +version: '5.2.0' config-version: 2 profile: dbt_snowflake_monitoring diff --git a/models/staging/stg_access_history.sql b/models/staging/stg_access_history.sql index aad63d3..cb5b0be 100644 --- a/models/staging/stg_access_history.sql +++ b/models/staging/stg_access_history.sql @@ -2,6 +2,8 @@ select query_id, + parent_query_id, + root_query_id, query_start_time, user_name, direct_objects_accessed,