diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 31e84bba3..9f5762ee0 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.6.2 +current_version = 1.6.3 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.6.3.md b/.changes/1.6.3.md new file mode 100644 index 000000000..4cbaf3c8c --- /dev/null +++ b/.changes/1.6.3.md @@ -0,0 +1,14 @@ +## dbt-snowflake 1.6.3 - September 25, 2023 + +### Features + +- Redact cases where raw data can be leaked logs ([#772](https://github.com/dbt-labs/dbt-snowflake/issues/772)) + +### Fixes + +- changes expected value types to AnyInteger to take into account changes in core ([#762](https://github.com/dbt-labs/dbt-snowflake/issues/762)) +- Fixing comment on syntax for dynamic tables ([#769](https://github.com/dbt-labs/dbt-snowflake/issues/769)) + +### Contributors +- [@jaypeedevlin](https://github.com/jaypeedevlin) ([#772](https://github.com/dbt-labs/dbt-snowflake/issues/772)) +- [@kaarthik108](https://github.com/kaarthik108) ([#769](https://github.com/dbt-labs/dbt-snowflake/issues/769)) diff --git a/.changes/unreleased/Features-20230915-091507.yaml b/.changes/unreleased/Features-20230915-091507.yaml deleted file mode 100644 index 7a5fc3a54..000000000 --- a/.changes/unreleased/Features-20230915-091507.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Features -body: Redact cases where raw data can be leaked logs -time: 2023-09-15T09:15:07.430443+10:00 -custom: - Author: jaypeedevlin - Issue: "772" diff --git a/.changes/unreleased/Fixes-20230907-153305.yaml b/.changes/unreleased/Fixes-20230907-153305.yaml deleted file mode 100644 index 23b10daf7..000000000 --- a/.changes/unreleased/Fixes-20230907-153305.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Fixes -body: changes expected value types to AnyInteger to take into account changes in core -time: 2023-09-07T15:33:05.133868-05:00 -custom: - Author: McKnight-42 - Issue: "762" diff --git a/.changes/unreleased/Fixes-20230914-110800.yaml b/.changes/unreleased/Fixes-20230914-110800.yaml deleted file mode 100644 index 3aa206a73..000000000 --- a/.changes/unreleased/Fixes-20230914-110800.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Fixes -body: Fixing comment on syntax for dynamic tables -time: 2023-09-14T11:08:00.250684+12:00 -custom: - Author: kaarthik108 - Issue: '769' diff --git a/CHANGELOG.md b/CHANGELOG.md index 0f854c3f2..9d64a7bec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,13 +5,27 @@ - "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.6.2 - August 30, 2023 +## dbt-snowflake 1.6.3 - September 25, 2023 + +### Features + +- Redact cases where raw data can be leaked logs ([#772](https://github.com/dbt-labs/dbt-snowflake/issues/772)) ### Fixes -- remove senesitive creds from dbt debug stdout ([#754](https://github.com/dbt-labs/dbt-snowflake/issues/754)) +- changes expected value types to AnyInteger to take into account changes in core ([#762](https://github.com/dbt-labs/dbt-snowflake/issues/762)) +- Fixing comment on syntax for dynamic tables ([#769](https://github.com/dbt-labs/dbt-snowflake/issues/769)) + +### Contributors +- [@jaypeedevlin](https://github.com/jaypeedevlin) ([#772](https://github.com/dbt-labs/dbt-snowflake/issues/772)) +- [@kaarthik108](https://github.com/kaarthik108) ([#769](https://github.com/dbt-labs/dbt-snowflake/issues/769)) + + +## dbt-snowflake 1.6.2 - August 30, 2023 +### Fixes +- remove senesitive creds from dbt debug stdout ([#754](https://github.com/dbt-labs/dbt-snowflake/issues/754)) ## dbt-snowflake 1.6.1 - August 21, 2023 diff --git a/dbt/adapters/snowflake/__version__.py b/dbt/adapters/snowflake/__version__.py index a9851426d..33a97d944 100644 --- a/dbt/adapters/snowflake/__version__.py +++ b/dbt/adapters/snowflake/__version__.py @@ -1 +1 @@ -version = "1.6.2" +version = "1.6.3" diff --git a/setup.py b/setup.py index 5a7caf367..ebb9a3739 100644 --- a/setup.py +++ b/setup.py @@ -51,7 +51,7 @@ def _get_dbt_core_version(): package_name = "dbt-snowflake" -package_version = "1.6.2" +package_version = "1.6.3" dbt_core_version = _get_dbt_core_version() description = """The Snowflake adapter plugin for dbt"""