From 821820323398bb66163fb98453dd9fd638d88a0e Mon Sep 17 00:00:00 2001 From: Github Build Bot Date: Thu, 16 Mar 2023 20:28:27 +0000 Subject: [PATCH] Bumping version to 1.2.1 and generate changelog --- .bumpversion.cfg | 8 +------ .changes/1.2.1.md | 22 ++++++++++++++++++ .../Dependencies-20230104-151850.yaml | 7 ------ .../Dependencies-20230304-135458.yaml | 6 ----- .../unreleased/Features-20220803-160525.yaml | 7 ------ .../unreleased/Fixes-20230117-120349.yaml | 7 ------ .../unreleased/Security-20230216-093128.yaml | 6 ----- CHANGELOG.md | 23 +++++++++++++++++++ dbt/adapters/snowflake/__version__.py | 2 +- setup.py | 2 +- 10 files changed, 48 insertions(+), 42 deletions(-) create mode 100644 .changes/1.2.1.md delete mode 100644 .changes/unreleased/Dependencies-20230104-151850.yaml delete mode 100644 .changes/unreleased/Dependencies-20230304-135458.yaml delete mode 100644 .changes/unreleased/Features-20220803-160525.yaml delete mode 100644 .changes/unreleased/Fixes-20230117-120349.yaml delete mode 100644 .changes/unreleased/Security-20230216-093128.yaml diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 98032bc48..3df7de116 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,11 +1,5 @@ [bumpversion] -current_version = 1.2.0 - -# `parse` allows parsing the version into the parts we need to check. There are some -# unnamed groups and that's okay because they do not need to be audited. If any part -# of the version passed and does not match the regex, it will fail. -# expected matches: `1.5.0`, `1.5.0a1`, `1.5.0a1.dev123457+nightly` -# excepted failures: `1`, `1.5`, `1.5.2-a1`, `text1.5.0` +current_version = 1.2.1 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.2.1.md b/.changes/1.2.1.md new file mode 100644 index 000000000..f7a2a0a4c --- /dev/null +++ b/.changes/1.2.1.md @@ -0,0 +1,22 @@ +## dbt-snowflake 1.2.1 - March 16, 2023 + +### Features + +- Backport changie to dbt-snowflake 1.2 ([#216](https://github.com/dbt-labs/dbt-snowflake/issues/216)) + +### Fixes + +- Raise warning (not error) for custom code with isolated BEGIN; or COMMIT; statements ([#388](https://github.com/dbt-labs/dbt-snowflake/issues/388)) + +### Dependencies + +- Raise upperbound on cryptography to avoid vulnerabilities. ([#376](https://github.com/dbt-labs/dbt-snowflake/pull/376)) +- Removed explicit dependencies for cryptography and requests ([#476](https://github.com/dbt-labs/dbt-snowflake/pull/476)) + +### Security + +- Update `snowflake-connector-python` to 3.0 to address CVE-2022-42965 ([#476](https://github.com/dbt-labs/dbt-snowflake/pull/476)) + +### Contributors +- [@dbeatty10](https://github.com/dbeatty10) ([#476](https://github.com/dbt-labs/dbt-snowflake/pull/476)) +- [@mikealfare](https://github.com/mikealfare) ([#476](https://github.com/dbt-labs/dbt-snowflake/pull/476), [#476](https://github.com/dbt-labs/dbt-snowflake/pull/476)) diff --git a/.changes/unreleased/Dependencies-20230104-151850.yaml b/.changes/unreleased/Dependencies-20230104-151850.yaml deleted file mode 100644 index ba9de7849..000000000 --- a/.changes/unreleased/Dependencies-20230104-151850.yaml +++ /dev/null @@ -1,7 +0,0 @@ -kind: Dependencies -body: Raise upperbound on cryptography to avoid vulnerabilities. -time: 2023-01-04T15:18:50.449286-08:00 -custom: - Author: versusfacit - Issue: "359" - PR: "376" diff --git a/.changes/unreleased/Dependencies-20230304-135458.yaml b/.changes/unreleased/Dependencies-20230304-135458.yaml deleted file mode 100644 index f84ccbe76..000000000 --- a/.changes/unreleased/Dependencies-20230304-135458.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Dependencies -body: Removed explicit dependencies for cryptography and requests -time: 2023-03-04T13:54:58.498449-05:00 -custom: - Author: mikealfare - PR: "476" diff --git a/.changes/unreleased/Features-20220803-160525.yaml b/.changes/unreleased/Features-20220803-160525.yaml deleted file mode 100644 index 5329bf455..000000000 --- a/.changes/unreleased/Features-20220803-160525.yaml +++ /dev/null @@ -1,7 +0,0 @@ -kind: Features -body: Backport changie to dbt-snowflake 1.2 -time: 2022-08-03T16:05:25.484428-05:00 -custom: - Author: mcknight-42 - Issue: "216" - PR: "221" diff --git a/.changes/unreleased/Fixes-20230117-120349.yaml b/.changes/unreleased/Fixes-20230117-120349.yaml deleted file mode 100644 index 3d99fb615..000000000 --- a/.changes/unreleased/Fixes-20230117-120349.yaml +++ /dev/null @@ -1,7 +0,0 @@ -kind: Fixes -body: Raise warning (not error) for custom code with isolated BEGIN; or COMMIT; statements -time: 2023-01-17T12:03:49.652732+01:00 -custom: - Author: jtcohen6 - Issue: "388" - PR: "401" diff --git a/.changes/unreleased/Security-20230216-093128.yaml b/.changes/unreleased/Security-20230216-093128.yaml deleted file mode 100644 index 7868b76c6..000000000 --- a/.changes/unreleased/Security-20230216-093128.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Security -body: Update `snowflake-connector-python` to 3.0 to address CVE-2022-42965 -time: 2023-02-16T09:31:28.844127-07:00 -custom: - Author: dbeatty10 mikealfare - PR: "476" diff --git a/CHANGELOG.md b/CHANGELOG.md index 3b8320b7c..3d65441c0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,29 @@ - "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.2.1 - March 16, 2023 + +### Features + +- Backport changie to dbt-snowflake 1.2 ([#216](https://github.com/dbt-labs/dbt-snowflake/issues/216)) + +### Fixes + +- Raise warning (not error) for custom code with isolated BEGIN; or COMMIT; statements ([#388](https://github.com/dbt-labs/dbt-snowflake/issues/388)) + +### Dependencies + +- Raise upperbound on cryptography to avoid vulnerabilities. ([#376](https://github.com/dbt-labs/dbt-snowflake/pull/376)) +- Removed explicit dependencies for cryptography and requests ([#476](https://github.com/dbt-labs/dbt-snowflake/pull/476)) + +### Security + +- Update `snowflake-connector-python` to 3.0 to address CVE-2022-42965 ([#476](https://github.com/dbt-labs/dbt-snowflake/pull/476)) + +### Contributors +- [@dbeatty10](https://github.com/dbeatty10) ([#476](https://github.com/dbt-labs/dbt-snowflake/pull/476)) +- [@mikealfare](https://github.com/mikealfare) ([#476](https://github.com/dbt-labs/dbt-snowflake/pull/476), [#476](https://github.com/dbt-labs/dbt-snowflake/pull/476)) + ## dbt-snowflake 1.2.0 - July 26, 2022 diff --git a/dbt/adapters/snowflake/__version__.py b/dbt/adapters/snowflake/__version__.py index c203c5d89..eb1d9a0ff 100644 --- a/dbt/adapters/snowflake/__version__.py +++ b/dbt/adapters/snowflake/__version__.py @@ -1 +1 @@ -version = "1.2.0" +version = "1.2.1" diff --git a/setup.py b/setup.py index 81c198b86..61446bbb0 100644 --- a/setup.py +++ b/setup.py @@ -50,7 +50,7 @@ def _get_dbt_core_version(): package_name = "dbt-snowflake" -package_version = "1.2.0" +package_version = "1.2.1" dbt_core_version = _get_dbt_core_version() description = """The Snowflake adapter plugin for dbt"""