diff --git a/.bumpversion.cfg b/.bumpversion.cfg index b14a398dd..6782266bb 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.7.0 +current_version = 1.7.1 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.7.1.md b/.changes/1.7.1.md new file mode 100644 index 000000000..b545310e4 --- /dev/null +++ b/.changes/1.7.1.md @@ -0,0 +1,5 @@ +## dbt-snowflake 1.7.1 - 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 b17ff5b88..914b39adf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ - "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.7.1 - 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.7.0 - November 02, 2023 ### Features @@ -67,7 +75,6 @@ - [@julio-romero](https://github.com/julio-romero) ([#711](https://github.com/dbt-labs/dbt-snowflake/issues/711)) - [@kaarthik108](https://github.com/kaarthik108) ([#769](https://github.com/dbt-labs/dbt-snowflake/issues/769), [#769](https://github.com/dbt-labs/dbt-snowflake/issues/769)) - ## Previous Releases For information on prior major and minor releases, see their changelogs: - [1.6](https://github.com/dbt-labs/dbt-snowflake/blob/1.6.latest/CHANGELOG.md) diff --git a/dbt/adapters/snowflake/__version__.py b/dbt/adapters/snowflake/__version__.py index a55413d15..116d56678 100644 --- a/dbt/adapters/snowflake/__version__.py +++ b/dbt/adapters/snowflake/__version__.py @@ -1 +1 @@ -version = "1.7.0" +version = "1.7.1" diff --git a/setup.py b/setup.py index 21e78fac9..1e1bd8bcf 100644 --- a/setup.py +++ b/setup.py @@ -51,7 +51,7 @@ def _get_dbt_core_version(): package_name = "dbt-snowflake" -package_version = "1.7.0" +package_version = "1.7.1" dbt_core_version = _get_dbt_core_version() description = """The Snowflake adapter plugin for dbt"""