From 7672a7adbe598c20b0c20c533b9572c48138b031 Mon Sep 17 00:00:00 2001 From: Github Build Bot Date: Thu, 23 May 2024 00:25:06 +0000 Subject: [PATCH] Bumping version to 1.8.2 and generate changelog --- .bumpversion.cfg | 2 +- .changes/1.8.2.md | 5 +++++ .changes/unreleased/Fixes-20240516-174337.yaml | 6 ------ CHANGELOG.md | 10 ++++++++-- dbt/adapters/snowflake/__version__.py | 2 +- 5 files changed, 15 insertions(+), 10 deletions(-) create mode 100644 .changes/1.8.2.md delete mode 100644 .changes/unreleased/Fixes-20240516-174337.yaml diff --git a/.bumpversion.cfg b/.bumpversion.cfg index ae6f5212e..ea067d8bd 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.8.1 +current_version = 1.8.2 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.8.2.md b/.changes/1.8.2.md new file mode 100644 index 000000000..9be367356 --- /dev/null +++ b/.changes/1.8.2.md @@ -0,0 +1,5 @@ +## dbt-snowflake 1.8.2 - May 23, 2024 + +### Fixes + +- Update relation caching to correctly identify dynamic tables, accounting for Snowflake's `2024_03` bundle ([#1016](https://github.com/dbt-labs/dbt-snowflake/issues/1016)) diff --git a/.changes/unreleased/Fixes-20240516-174337.yaml b/.changes/unreleased/Fixes-20240516-174337.yaml deleted file mode 100644 index 955d90ed3..000000000 --- a/.changes/unreleased/Fixes-20240516-174337.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Fixes -body: Update relation caching to correctly identify dynamic tables, accounting for Snowflake's `2024_03` bundle -time: 2024-05-16T17:43:37.336858-04:00 -custom: - Author: mikealfare - Issue: "1016" diff --git a/CHANGELOG.md b/CHANGELOG.md index b3a64e0f2..19c0ab3ae 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.8.2 - May 23, 2024 + +### Fixes + +- Update relation caching to correctly identify dynamic tables, accounting for Snowflake's `2024_03` bundle ([#1016](https://github.com/dbt-labs/dbt-snowflake/issues/1016)) + + + ## dbt-snowflake 1.8.1 - May 15, 2024 ### Under the Hood - Speedup catalog string comparison by using ilike before equals ([#1035](https://github.com/dbt-labs/dbt-snowflake/issues/1035)) - - ## dbt-snowflake 1.8.0 - May 09, 2024 ### Features diff --git a/dbt/adapters/snowflake/__version__.py b/dbt/adapters/snowflake/__version__.py index 72126ce16..ba22724db 100644 --- a/dbt/adapters/snowflake/__version__.py +++ b/dbt/adapters/snowflake/__version__.py @@ -1 +1 @@ -version = "1.8.1" +version = "1.8.2"