From fdbf78a65323ac7108f8caa1f23ec3bf81c21c3e Mon Sep 17 00:00:00 2001 From: Github Build Bot Date: Thu, 25 May 2023 16:23:05 +0000 Subject: [PATCH] Bumping version to 1.6.0b2 and generate changelog --- .bumpversion.cfg | 2 +- .changes/1.6.0-b2.md | 11 +++++++++++ .../Fixes-20230508-094834.yaml | 0 .../Fixes-20230520-043039.yaml | 0 .../Fixes-20230524-151825.yaml | 0 .../Fixes-20230524-165236.yaml | 0 CHANGELOG.md | 15 +++++++++++++-- dbt/adapters/redshift/__version__.py | 2 +- 8 files changed, 26 insertions(+), 4 deletions(-) create mode 100644 .changes/1.6.0-b2.md rename .changes/{unreleased => 1.6.0}/Fixes-20230508-094834.yaml (100%) rename .changes/{unreleased => 1.6.0}/Fixes-20230520-043039.yaml (100%) rename .changes/{unreleased => 1.6.0}/Fixes-20230524-151825.yaml (100%) rename .changes/{unreleased => 1.6.0}/Fixes-20230524-165236.yaml (100%) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index f24dacddf..581aad340 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.6.0b1 +current_version = 1.6.0b2 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.6.0-b2.md b/.changes/1.6.0-b2.md new file mode 100644 index 000000000..d0f1d2871 --- /dev/null +++ b/.changes/1.6.0-b2.md @@ -0,0 +1,11 @@ +## dbt-redshift 1.6.0-b2 - May 25, 2023 + +### Fixes + +- Fix redshift_connector issue of timing out after 30s ([#427](https://github.com/dbt-labs/dbt-redshift/issues/427)) +- Add a new connection param to reenable certain Redshift commands in macros. ([#463](https://github.com/dbt-labs/dbt-redshift/issues/463)) +- Escape `%` symbols in table/view/column comments ([#441](https://github.com/dbt-labs/dbt-redshift/issues/441)) +- Use smaller default batch size for seeds ([#347](https://github.com/dbt-labs/dbt-redshift/issues/347)) + +### Contributors +- [@jiezhen-chen](https://github.com/jiezhen-chen) ([#427](https://github.com/dbt-labs/dbt-redshift/issues/427)) diff --git a/.changes/unreleased/Fixes-20230508-094834.yaml b/.changes/1.6.0/Fixes-20230508-094834.yaml similarity index 100% rename from .changes/unreleased/Fixes-20230508-094834.yaml rename to .changes/1.6.0/Fixes-20230508-094834.yaml diff --git a/.changes/unreleased/Fixes-20230520-043039.yaml b/.changes/1.6.0/Fixes-20230520-043039.yaml similarity index 100% rename from .changes/unreleased/Fixes-20230520-043039.yaml rename to .changes/1.6.0/Fixes-20230520-043039.yaml diff --git a/.changes/unreleased/Fixes-20230524-151825.yaml b/.changes/1.6.0/Fixes-20230524-151825.yaml similarity index 100% rename from .changes/unreleased/Fixes-20230524-151825.yaml rename to .changes/1.6.0/Fixes-20230524-151825.yaml diff --git a/.changes/unreleased/Fixes-20230524-165236.yaml b/.changes/1.6.0/Fixes-20230524-165236.yaml similarity index 100% rename from .changes/unreleased/Fixes-20230524-165236.yaml rename to .changes/1.6.0/Fixes-20230524-165236.yaml diff --git a/CHANGELOG.md b/CHANGELOG.md index 563b9a61c..bb1774237 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,19 @@ - "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-redshift/blob/main/CONTRIBUTING.md#adding-changelog-entry) +## dbt-redshift 1.6.0-b2 - May 25, 2023 + +### Fixes + +- Fix redshift_connector issue of timing out after 30s ([#427](https://github.com/dbt-labs/dbt-redshift/issues/427)) +- Add a new connection param to reenable certain Redshift commands in macros. ([#463](https://github.com/dbt-labs/dbt-redshift/issues/463)) +- Escape `%` symbols in table/view/column comments ([#441](https://github.com/dbt-labs/dbt-redshift/issues/441)) +- Use smaller default batch size for seeds ([#347](https://github.com/dbt-labs/dbt-redshift/issues/347)) + +### Contributors +- [@jiezhen-chen](https://github.com/jiezhen-chen) ([#427](https://github.com/dbt-labs/dbt-redshift/issues/427)) + + ## dbt-redshift 1.6.0-b1 - May 12, 2023 ### Fixes @@ -16,8 +29,6 @@ - Update pytest requirement from ~=7.2 to ~=7.3 ([#414](https://github.com/dbt-labs/dbt-redshift/pull/414)) - - ## dbt-redshift 1.6.0-a1 - April 17, 2023 ## Previous Releases diff --git a/dbt/adapters/redshift/__version__.py b/dbt/adapters/redshift/__version__.py index cafa91966..21c2b2836 100644 --- a/dbt/adapters/redshift/__version__.py +++ b/dbt/adapters/redshift/__version__.py @@ -1 +1 @@ -version = "1.6.0b1" +version = "1.6.0b2"