diff --git a/.bumpversion.cfg b/.bumpversion.cfg index e46830281..a0438de90 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.4.4 +current_version = 1.4.5 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.4.5.md b/.changes/1.4.5.md new file mode 100644 index 000000000..30baad86b --- /dev/null +++ b/.changes/1.4.5.md @@ -0,0 +1,5 @@ +## dbt-snowflake 1.4.5 - 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 3f0d5f22a..637abfa26 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.4.5 - 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.4.4 - August 04, 2023 ### Under the Hood - remove support for python 3.7 ([#638](https://github.com/dbt-labs/dbt-snowflake/issues/638)) - - ## dbt-snowflake 1.4.3 - May 31, 2023 ### Fixes diff --git a/dbt/adapters/snowflake/__version__.py b/dbt/adapters/snowflake/__version__.py index 98da246a2..776c084b5 100644 --- a/dbt/adapters/snowflake/__version__.py +++ b/dbt/adapters/snowflake/__version__.py @@ -1 +1 @@ -version = "1.4.4" +version = "1.4.5" diff --git a/setup.py b/setup.py index b09bd1a37..baa9141a7 100644 --- a/setup.py +++ b/setup.py @@ -51,7 +51,7 @@ def _get_dbt_core_version(): package_name = "dbt-snowflake" -package_version = "1.4.4" +package_version = "1.4.5" dbt_core_version = _get_dbt_core_version() description = """The Snowflake adapter plugin for dbt"""