From 87c3584dd93cdac7afee34affda697b787e5eeae Mon Sep 17 00:00:00 2001 From: Mike Alfare <13974384+mikealfare@users.noreply.github.com> Date: Fri, 14 Apr 2023 00:56:35 -0400 Subject: [PATCH] created 1.5.0rc1 changelog (#408) --- .changes/1.5.0-b1.md | 16 ----------- .changes/1.5.0-b2.md | 5 ---- .changes/1.5.0-b3.md | 9 ------- .changes/1.5.0-b4.md | 10 ------- .changes/1.5.0-rc1.md | 27 +++++++++++++++++++ .../Features-20230406-104634.yaml | 0 .../Fixes-20230407-213725.yaml | 0 .../Fixes-20230411-143706.yaml | 0 8 files changed, 27 insertions(+), 40 deletions(-) delete mode 100644 .changes/1.5.0-b1.md delete mode 100644 .changes/1.5.0-b2.md delete mode 100644 .changes/1.5.0-b3.md delete mode 100644 .changes/1.5.0-b4.md create mode 100644 .changes/1.5.0-rc1.md rename .changes/{unreleased => 1.5.0}/Features-20230406-104634.yaml (100%) rename .changes/{unreleased => 1.5.0}/Fixes-20230407-213725.yaml (100%) rename .changes/{unreleased => 1.5.0}/Fixes-20230411-143706.yaml (100%) diff --git a/.changes/1.5.0-b1.md b/.changes/1.5.0-b1.md deleted file mode 100644 index 0f47774a8..000000000 --- a/.changes/1.5.0-b1.md +++ /dev/null @@ -1,16 +0,0 @@ -## dbt-redshift 1.5.0-b1 - February 22, 2023 - -### Features - -- dbt-constraints for redshift ([#227](https://github.com/dbt-labs/dbt-redshift/issues/227)) -- Stand-alone Python module for RedshiftColumn ([#290](https://github.com/dbt-labs/dbt-redshift/issues/290)) - -### Under the Hood - -- Replace psycopg2 connector with Redshift python connector when connecting to Redshift ([#219](https://github.com/dbt-labs/dbt-redshift/issues/219)) -- remove tox call to integration tests ([#257](https://github.com/dbt-labs/dbt-redshift/issues/257)) -- Convert Backup Table tests ([#293](https://github.com/dbt-labs/dbt-redshift/issues/293)) - -### Contributors -- [@dave-connors-3](https://github.com/dave-connors-3) ([#227](https://github.com/dbt-labs/dbt-redshift/issues/227)) -- [@sathiish-kumar](https://github.com/sathiish-kumar) ([#219](https://github.com/dbt-labs/dbt-redshift/issues/219)) diff --git a/.changes/1.5.0-b2.md b/.changes/1.5.0-b2.md deleted file mode 100644 index c46ca4493..000000000 --- a/.changes/1.5.0-b2.md +++ /dev/null @@ -1,5 +0,0 @@ -## dbt-redshift 1.5.0-b2 - March 02, 2023 - -### Under the Hood - -- Rename constraints_enabled to contract ([#330](https://github.com/dbt-labs/dbt-redshift/issues/330)) diff --git a/.changes/1.5.0-b3.md b/.changes/1.5.0-b3.md deleted file mode 100644 index dda1f66d1..000000000 --- a/.changes/1.5.0-b3.md +++ /dev/null @@ -1,9 +0,0 @@ -## dbt-redshift 1.5.0-b3 - March 16, 2023 - -### Features - -- Enforce contracts on models materialized as tables and views ([#319](https://github.com/dbt-labs/dbt-redshift/issues/319), [#340](https://github.com/dbt-labs/dbt-redshift/issues/340)) - -### Fixes - -- Added methods to `RedshiftAdapter` that were inadvertantly dropped when migrating from `PostgresAdapter` to `SQLAdapter` ([#365](https://github.com/dbt-labs/dbt-redshift/issues/365)) diff --git a/.changes/1.5.0-b4.md b/.changes/1.5.0-b4.md deleted file mode 100644 index 5ab44a175..000000000 --- a/.changes/1.5.0-b4.md +++ /dev/null @@ -1,10 +0,0 @@ -## dbt-redshift 1.5.0-b4 - March 30, 2023 - -### Features - -- Use contracted column order in create_table_as ([#356](https://github.com/dbt-labs/dbt-redshift/issues/356)) -- Modify adapter to work with unified constraint fields ([#341](https://github.com/dbt-labs/dbt-redshift/issues/341)) - -### Under the Hood - -- Treat contract config as a python object ([#330](https://github.com/dbt-labs/dbt-redshift/issues/330), [#382](https://github.com/dbt-labs/dbt-redshift/issues/382)) diff --git a/.changes/1.5.0-rc1.md b/.changes/1.5.0-rc1.md new file mode 100644 index 000000000..d72254377 --- /dev/null +++ b/.changes/1.5.0-rc1.md @@ -0,0 +1,27 @@ +## dbt-redshift 1.5.0-rc1 - April 13, 2023 + +### Features + +- Support for data types constraints in Redshift ([#227](https://github.com/dbt-labs/dbt-redshift/issues/227), [#342](https://github.com/dbt-labs/dbt-redshift/issues/342)) +- Stand-alone Python module for RedshiftColumn ([#290](https://github.com/dbt-labs/dbt-redshift/issues/290)) +- Enforce contracts on models materialized as tables and views ([#319](https://github.com/dbt-labs/dbt-redshift/issues/319), [#340](https://github.com/dbt-labs/dbt-redshift/issues/340)) +- Use contracted column order in create_table_as ([#356](https://github.com/dbt-labs/dbt-redshift/issues/356)) +- Modify adapter to work with unified constraint fields ([#341](https://github.com/dbt-labs/dbt-redshift/issues/341)) +- Add support for model-level constraints ([#343](https://github.com/dbt-labs/dbt-redshift/issues/343)) + +### Fixes + +- Added methods to `RedshiftAdapter` that were inadvertantly dropped when migrating from `PostgresAdapter` to `SQLAdapter` ([#365](https://github.com/dbt-labs/dbt-redshift/issues/365)) +- Fix two adapter logging bugs arising from using the redshift cursor object ([#373](https://github.com/dbt-labs/dbt-redshift/issues/373)) +- Repair accidental change to dev-requirements ([#403](https://github.com/dbt-labs/dbt-redshift/issues/403)) + +### Under the Hood + +- Replace psycopg2 connector with Redshift python connector when connecting to Redshift ([#219](https://github.com/dbt-labs/dbt-redshift/issues/219)) +- remove tox call to integration tests ([#257](https://github.com/dbt-labs/dbt-redshift/issues/257)) +- Convert Backup Table tests ([#293](https://github.com/dbt-labs/dbt-redshift/issues/293)) +- Treat contract config as a python object ([#330](https://github.com/dbt-labs/dbt-redshift/issues/330), [#382](https://github.com/dbt-labs/dbt-redshift/issues/382)) + +### Contributors +- [@dave-connors-3](https://github.com/dave-connors-3) ([#227](https://github.com/dbt-labs/dbt-redshift/issues/227), [#342](https://github.com/dbt-labs/dbt-redshift/issues/342)) +- [@sathiish-kumar](https://github.com/sathiish-kumar) ([#219](https://github.com/dbt-labs/dbt-redshift/issues/219)) diff --git a/.changes/unreleased/Features-20230406-104634.yaml b/.changes/1.5.0/Features-20230406-104634.yaml similarity index 100% rename from .changes/unreleased/Features-20230406-104634.yaml rename to .changes/1.5.0/Features-20230406-104634.yaml diff --git a/.changes/unreleased/Fixes-20230407-213725.yaml b/.changes/1.5.0/Fixes-20230407-213725.yaml similarity index 100% rename from .changes/unreleased/Fixes-20230407-213725.yaml rename to .changes/1.5.0/Fixes-20230407-213725.yaml diff --git a/.changes/unreleased/Fixes-20230411-143706.yaml b/.changes/1.5.0/Fixes-20230411-143706.yaml similarity index 100% rename from .changes/unreleased/Fixes-20230411-143706.yaml rename to .changes/1.5.0/Fixes-20230411-143706.yaml