From cd89eb14f81cce1a06884fbac973d8b6ef5b1ae9 Mon Sep 17 00:00:00 2001 From: Github Build Bot Date: Fri, 8 Dec 2023 00:22:18 +0000 Subject: [PATCH] Bumping version to 1.5.6 and generate changelog --- .bumpversion.cfg | 2 +- .changes/1.5.6.md | 5 +++++ .changes/unreleased/Security-20231128-173716.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.5.6.md delete mode 100644 .changes/unreleased/Security-20231128-173716.yaml diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 34875f150..9bbfe7a5a 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.5.5 +current_version = 1.5.6 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.5.6.md b/.changes/1.5.6.md new file mode 100644 index 000000000..54f65100a --- /dev/null +++ b/.changes/1.5.6.md @@ -0,0 +1,5 @@ +## dbt-snowflake 1.5.6 - December 08, 2023 + +### Security + +- DDOS vulnerability in 41.0.5. Uptick to avoid ([#852](https://github.com/dbt-labs/dbt-snowflake/pull/852)) diff --git a/.changes/unreleased/Security-20231128-173716.yaml b/.changes/unreleased/Security-20231128-173716.yaml deleted file mode 100644 index 18d48ad9c..000000000 --- a/.changes/unreleased/Security-20231128-173716.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Security -body: DDOS vulnerability in 41.0.5. Uptick to avoid -time: 2023-11-28T17:37:16.11557-08:00 -custom: - Author: versusfacit - PR: "852" diff --git a/CHANGELOG.md b/CHANGELOG.md index 1a70fb74f..8620199b0 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.5.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.5.5 - September 28, 2023 ### Under the Hood - Add tests for inlined limit + sql_header in dbt show query ([#786](https://github.com/dbt-labs/dbt-snowflake/issues/786)) - - ## dbt-snowflake 1.5.4 - September 25, 2023 ### Features diff --git a/dbt/adapters/snowflake/__version__.py b/dbt/adapters/snowflake/__version__.py index 7f07abf9a..f8ec07704 100644 --- a/dbt/adapters/snowflake/__version__.py +++ b/dbt/adapters/snowflake/__version__.py @@ -1 +1 @@ -version = "1.5.5" +version = "1.5.6" diff --git a/setup.py b/setup.py index 943702819..773286ff5 100644 --- a/setup.py +++ b/setup.py @@ -51,7 +51,7 @@ def _get_dbt_core_version(): package_name = "dbt-snowflake" -package_version = "1.5.5" +package_version = "1.5.6" dbt_core_version = _get_dbt_core_version() description = """The Snowflake adapter plugin for dbt"""