From 827d1f4bfe689143d640ac1ee80fe99df76bbc65 Mon Sep 17 00:00:00 2001 From: Github Build Bot Date: Fri, 16 Feb 2024 21:36:53 +0000 Subject: [PATCH] Bumping version to 1.6.7 and generate changelog --- .bumpversion.cfg | 2 +- .changes/1.6.7.md | 5 +++++ .changes/unreleased/Fixes-20240216-125014.yaml | 6 ------ CHANGELOG.md | 10 ++++++++-- dbt/adapters/snowflake/__version__.py | 2 +- setup.py | 2 +- 6 files changed, 16 insertions(+), 11 deletions(-) create mode 100644 .changes/1.6.7.md delete mode 100644 .changes/unreleased/Fixes-20240216-125014.yaml diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 9c5fd9417..cbdfb2893 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.6.6 +current_version = 1.6.7 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.6.7.md b/.changes/1.6.7.md new file mode 100644 index 000000000..4e2e43037 --- /dev/null +++ b/.changes/1.6.7.md @@ -0,0 +1,5 @@ +## dbt-snowflake 1.6.7 - February 16, 2024 + +### Fixes + +- remove `token` field from connection keys ([#906](https://github.com/dbt-labs/dbt-snowflake/issues/906)) diff --git a/.changes/unreleased/Fixes-20240216-125014.yaml b/.changes/unreleased/Fixes-20240216-125014.yaml deleted file mode 100644 index b2d4ea163..000000000 --- a/.changes/unreleased/Fixes-20240216-125014.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Fixes -body: remove `token` field from connection keys -time: 2024-02-16T12:50:14.459161-08:00 -custom: - Author: colin-rogers-dbt - Issue: "906" diff --git a/CHANGELOG.md b/CHANGELOG.md index dbdbc4791..8e3b6dd2e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,14 +5,20 @@ - "Breaking changes" listed under a version may require action from end users or external maintainers when upgrading to that version. - Do not edit this file directly. This file is auto-generated using [changie](https://github.com/miniscruff/changie). For details on how to document a change, see [the contributing guide](https://github.com/dbt-labs/dbt-snowflake/blob/main/CONTRIBUTING.md#adding-changelog-entry) +## dbt-snowflake 1.6.7 - February 16, 2024 + +### Fixes + +- remove `token` field from connection keys ([#906](https://github.com/dbt-labs/dbt-snowflake/issues/906)) + + + ## dbt-snowflake 1.6.6 - December 08, 2023 ### Security - DDOS vulnerability in 41.0.5. Uptick to avoid ([#852](https://github.com/dbt-labs/dbt-snowflake/pull/852)) - - ## dbt-snowflake 1.6.5 - November 01, 2023 ### Fixes diff --git a/dbt/adapters/snowflake/__version__.py b/dbt/adapters/snowflake/__version__.py index 267d3275c..26a0a0131 100644 --- a/dbt/adapters/snowflake/__version__.py +++ b/dbt/adapters/snowflake/__version__.py @@ -1 +1 @@ -version = "1.6.6" +version = "1.6.7" diff --git a/setup.py b/setup.py index e49482f63..7d7d68b46 100644 --- a/setup.py +++ b/setup.py @@ -51,7 +51,7 @@ def _get_dbt_core_version(): package_name = "dbt-snowflake" -package_version = "1.6.6" +package_version = "1.6.7" dbt_core_version = _get_dbt_core_version() description = """The Snowflake adapter plugin for dbt"""