diff --git a/.bumpversion.cfg b/.bumpversion.cfg index cbdfb2893..e92da00d4 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.6.7 +current_version = 1.6.8 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.6.8.md b/.changes/1.6.8.md new file mode 100644 index 000000000..c0f0fe45a --- /dev/null +++ b/.changes/1.6.8.md @@ -0,0 +1,10 @@ +## dbt-snowflake 1.6.8 - March 28, 2024 + +### Fixes + +- modify metadata queries to take into account object type of BASE TABLE being assigned to dynamic tables when was null previously ([#934](https://github.com/dbt-labs/dbt-snowflake/issues/934)) +- remove `private_key_path` from connection keys ([#949](https://github.com/dbt-labs/dbt-snowflake/issues/949)) + +### Dependencies + +- bump cryptography to 42.0.4 or higher for security callouts ([#938](https://github.com/dbt-labs/dbt-snowflake/pull/938)) diff --git a/.changes/unreleased/Dependencies-20240320-111128.yaml b/.changes/unreleased/Dependencies-20240320-111128.yaml deleted file mode 100644 index 41f1609e4..000000000 --- a/.changes/unreleased/Dependencies-20240320-111128.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Dependencies -body: bump cryptography to 42.0.4 or higher for security callouts -time: 2024-03-20T11:11:28.5121-05:00 -custom: - Author: McKnight-42 - PR: "938" diff --git a/.changes/unreleased/Fixes-20240320-154054.yaml b/.changes/unreleased/Fixes-20240320-154054.yaml deleted file mode 100644 index 6d74a2be9..000000000 --- a/.changes/unreleased/Fixes-20240320-154054.yaml +++ /dev/null @@ -1,7 +0,0 @@ -kind: Fixes -body: modify metadata queries to take into account object type of BASE TABLE being - assigned to dynamic tables when was null previously -time: 2024-03-20T15:40:54.074292-05:00 -custom: - Author: McKnight-42 - Issue: "934" diff --git a/.changes/unreleased/Fixes-20240322-104553.yaml b/.changes/unreleased/Fixes-20240322-104553.yaml deleted file mode 100644 index 21c037462..000000000 --- a/.changes/unreleased/Fixes-20240322-104553.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Fixes -body: remove `private_key_path` from connection keys -time: 2024-03-22T10:45:53.598328-05:00 -custom: - Author: McKnight-42 - Issue: "949" diff --git a/CHANGELOG.md b/CHANGELOG.md index 8e3b6dd2e..bb2c81f68 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,13 +5,24 @@ - "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 +## dbt-snowflake 1.6.8 - March 28, 2024 ### Fixes -- remove `token` field from connection keys ([#906](https://github.com/dbt-labs/dbt-snowflake/issues/906)) +- modify metadata queries to take into account object type of BASE TABLE being assigned to dynamic tables when was null previously ([#934](https://github.com/dbt-labs/dbt-snowflake/issues/934)) +- remove `private_key_path` from connection keys ([#949](https://github.com/dbt-labs/dbt-snowflake/issues/949)) + +### Dependencies + +- bump cryptography to 42.0.4 or higher for security callouts ([#938](https://github.com/dbt-labs/dbt-snowflake/pull/938)) + +## 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 diff --git a/dbt/adapters/snowflake/__version__.py b/dbt/adapters/snowflake/__version__.py index 26a0a0131..4776ab889 100644 --- a/dbt/adapters/snowflake/__version__.py +++ b/dbt/adapters/snowflake/__version__.py @@ -1 +1 @@ -version = "1.6.7" +version = "1.6.8" diff --git a/setup.py b/setup.py index 7d7d68b46..ca9707e82 100644 --- a/setup.py +++ b/setup.py @@ -51,7 +51,7 @@ def _get_dbt_core_version(): package_name = "dbt-snowflake" -package_version = "1.6.7" +package_version = "1.6.8" dbt_core_version = _get_dbt_core_version() description = """The Snowflake adapter plugin for dbt"""