diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 9bbfe7a5a..7aee71c1f 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.5.6 +current_version = 1.5.7 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.5.7.md b/.changes/1.5.7.md new file mode 100644 index 000000000..8019b6379 --- /dev/null +++ b/.changes/1.5.7.md @@ -0,0 +1,5 @@ +## dbt-snowflake 1.5.7 - March 28, 2024 + +### 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/CHANGELOG.md b/CHANGELOG.md index 8620199b0..5a8c17f5a 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.7 - March 28, 2024 + +### 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.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 diff --git a/dbt/adapters/snowflake/__version__.py b/dbt/adapters/snowflake/__version__.py index f8ec07704..7d7c707ff 100644 --- a/dbt/adapters/snowflake/__version__.py +++ b/dbt/adapters/snowflake/__version__.py @@ -1 +1 @@ -version = "1.5.6" +version = "1.5.7" diff --git a/setup.py b/setup.py index 773286ff5..3326d2623 100644 --- a/setup.py +++ b/setup.py @@ -51,7 +51,7 @@ def _get_dbt_core_version(): package_name = "dbt-snowflake" -package_version = "1.5.6" +package_version = "1.5.7" dbt_core_version = _get_dbt_core_version() description = """The Snowflake adapter plugin for dbt"""