From a4ed7cefcb2f66068497745d350172094edb24cf Mon Sep 17 00:00:00 2001 From: Github Build Bot Date: Tue, 30 May 2023 14:46:14 +0000 Subject: [PATCH] Bumping version to 1.5.1 and generate changelog --- .bumpversion.cfg | 2 +- .changes/1.5.1-rc1.md | 13 ----------- .changes/{1.5.1-rc2.md => 1.5.1.md} | 9 +++++++- .changes/1.5.1/Fixes-20230414-163642.yaml | 6 ----- .changes/1.5.1/Fixes-20230505-132545.yaml | 6 ----- .changes/1.5.1/Fixes-20230506-173315.yaml | 6 ----- .changes/1.5.1/Fixes-20230508-042707.yaml | 6 ----- .changes/1.5.1/Fixes-20230508-072929.yaml | 6 ----- .changes/1.5.1/Fixes-20230508-142518.yaml | 6 ----- .changes/1.5.1/Fixes-20230509-123159.yaml | 6 ----- .changes/1.5.1/Fixes-20230509-165007.yaml | 6 ----- .changes/1.5.1/Fixes-20230515-123654.yaml | 6 ----- .changes/1.5.1/Fixes-20230515-142851.yaml | 6 ----- .changes/1.5.1/Fixes-20230522-135007.yaml | 6 ----- .../1.5.1/Under the Hood-20230518-114251.yaml | 6 ----- CHANGELOG.md | 23 +++++++------------ core/dbt/version.py | 2 +- core/setup.py | 2 +- docker/Dockerfile | 12 +++++----- .../dbt/adapters/postgres/__version__.py | 2 +- plugins/postgres/setup.py | 2 +- .../adapter/dbt/tests/adapter/__version__.py | 2 +- tests/adapter/setup.py | 2 +- 23 files changed, 29 insertions(+), 114 deletions(-) delete mode 100644 .changes/1.5.1-rc1.md rename .changes/{1.5.1-rc2.md => 1.5.1.md} (51%) delete mode 100644 .changes/1.5.1/Fixes-20230414-163642.yaml delete mode 100644 .changes/1.5.1/Fixes-20230505-132545.yaml delete mode 100644 .changes/1.5.1/Fixes-20230506-173315.yaml delete mode 100644 .changes/1.5.1/Fixes-20230508-042707.yaml delete mode 100644 .changes/1.5.1/Fixes-20230508-072929.yaml delete mode 100644 .changes/1.5.1/Fixes-20230508-142518.yaml delete mode 100644 .changes/1.5.1/Fixes-20230509-123159.yaml delete mode 100644 .changes/1.5.1/Fixes-20230509-165007.yaml delete mode 100644 .changes/1.5.1/Fixes-20230515-123654.yaml delete mode 100644 .changes/1.5.1/Fixes-20230515-142851.yaml delete mode 100644 .changes/1.5.1/Fixes-20230522-135007.yaml delete mode 100644 .changes/1.5.1/Under the Hood-20230518-114251.yaml diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 28bb0fe39d0..f67f568d7dc 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.5.1rc2 +current_version = 1.5.1 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.5.1-rc1.md b/.changes/1.5.1-rc1.md deleted file mode 100644 index 10ec59c8ff8..00000000000 --- a/.changes/1.5.1-rc1.md +++ /dev/null @@ -1,13 +0,0 @@ -## dbt-core 1.5.1-rc1 - May 12, 2023 - -### Fixes - -- fix typo in unpacking statically parsed ref ([#7364](https://github.com/dbt-labs/dbt-core/issues/7364)) -- Fix inverted `--print/--no-print` flag ([#7517](https://github.com/dbt-labs/dbt-core/issues/7517)) -- Back-compat for previous return type of 'collect_freshness' macro ([#7489](https://github.com/dbt-labs/dbt-core/issues/7489)) -- print model version in dbt show if specified ([#7407](https://github.com/dbt-labs/dbt-core/issues/7407)) -- Do not rewrite manifest.json during 'docs serve' command ([#7553](https://github.com/dbt-labs/dbt-core/issues/7553)) -- Pin protobuf to greater than 4.0.0 ([#7565](https://github.com/dbt-labs/dbt-core/issues/7565)) - -### Contributors -- [@thomasgjerdekog](https://github.com/thomasgjerdekog) ([#7517](https://github.com/dbt-labs/dbt-core/issues/7517)) diff --git a/.changes/1.5.1-rc2.md b/.changes/1.5.1.md similarity index 51% rename from .changes/1.5.1-rc2.md rename to .changes/1.5.1.md index f9121bc8609..8ae54034d35 100644 --- a/.changes/1.5.1-rc2.md +++ b/.changes/1.5.1.md @@ -1,8 +1,14 @@ -## dbt-core 1.5.1-rc2 - May 25, 2023 +## dbt-core 1.5.1 - May 30, 2023 ### Fixes +- fix typo in unpacking statically parsed ref ([#7364](https://github.com/dbt-labs/dbt-core/issues/7364)) +- Fix inverted `--print/--no-print` flag ([#7517](https://github.com/dbt-labs/dbt-core/issues/7517)) +- Back-compat for previous return type of 'collect_freshness' macro ([#7489](https://github.com/dbt-labs/dbt-core/issues/7489)) +- print model version in dbt show if specified ([#7407](https://github.com/dbt-labs/dbt-core/issues/7407)) - Allow missing `profiles.yml` for `dbt deps` and `dbt init` ([#7511](https://github.com/dbt-labs/dbt-core/issues/7511)) +- Do not rewrite manifest.json during 'docs serve' command ([#7553](https://github.com/dbt-labs/dbt-core/issues/7553)) +- Pin protobuf to greater than 4.0.0 ([#7565](https://github.com/dbt-labs/dbt-core/issues/7565)) - Throw error for duplicated versioned and unversioned models ([#7487](https://github.com/dbt-labs/dbt-core/issues/7487)) - Fix: Relative project paths weren't working with deps ([#7491](https://github.com/dbt-labs/dbt-core/issues/7491)) - Fall back if rendering the password field fails. ([#7629](https://github.com/dbt-labs/dbt-core/issues/7629)) @@ -14,3 +20,4 @@ ### Contributors - [@iknox-fa](https://github.com/iknox-fa) ([#7491](https://github.com/dbt-labs/dbt-core/issues/7491), [#NA](https://github.com/dbt-labs/dbt-core/issues/NA)) +- [@thomasgjerdekog](https://github.com/thomasgjerdekog) ([#7517](https://github.com/dbt-labs/dbt-core/issues/7517)) diff --git a/.changes/1.5.1/Fixes-20230414-163642.yaml b/.changes/1.5.1/Fixes-20230414-163642.yaml deleted file mode 100644 index 7ba3cc58201..00000000000 --- a/.changes/1.5.1/Fixes-20230414-163642.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Fixes -body: fix typo in unpacking statically parsed ref -time: 2023-04-14T16:36:42.279838-04:00 -custom: - Author: MichelleArk - Issue: "7364" diff --git a/.changes/1.5.1/Fixes-20230505-132545.yaml b/.changes/1.5.1/Fixes-20230505-132545.yaml deleted file mode 100644 index 8a7dd9bc2af..00000000000 --- a/.changes/1.5.1/Fixes-20230505-132545.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Fixes -body: Fix inverted `--print/--no-print` flag -time: 2023-05-05T13:25:45.949997-06:00 -custom: - Author: dbeatty10 thomasgjerdekog - Issue: "7517" diff --git a/.changes/1.5.1/Fixes-20230506-173315.yaml b/.changes/1.5.1/Fixes-20230506-173315.yaml deleted file mode 100644 index 84d9a5f036c..00000000000 --- a/.changes/1.5.1/Fixes-20230506-173315.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Fixes -body: Back-compat for previous return type of 'collect_freshness' macro -time: 2023-05-06T17:33:15.104953+02:00 -custom: - Author: jtcohen6 - Issue: "7489" diff --git a/.changes/1.5.1/Fixes-20230508-042707.yaml b/.changes/1.5.1/Fixes-20230508-042707.yaml deleted file mode 100644 index 181741c68ff..00000000000 --- a/.changes/1.5.1/Fixes-20230508-042707.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Fixes -body: print model version in dbt show if specified -time: 2023-05-08T04:27:07.9965-07:00 -custom: - Author: aranke - Issue: "7407" diff --git a/.changes/1.5.1/Fixes-20230508-072929.yaml b/.changes/1.5.1/Fixes-20230508-072929.yaml deleted file mode 100644 index 1f07306e882..00000000000 --- a/.changes/1.5.1/Fixes-20230508-072929.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Fixes -body: Allow missing `profiles.yml` for `dbt deps` and `dbt init` -time: 2023-05-08T07:29:29.873793-06:00 -custom: - Author: dbeatty10 - Issue: "7511" diff --git a/.changes/1.5.1/Fixes-20230508-142518.yaml b/.changes/1.5.1/Fixes-20230508-142518.yaml deleted file mode 100644 index 8b14ea53dae..00000000000 --- a/.changes/1.5.1/Fixes-20230508-142518.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Fixes -body: Do not rewrite manifest.json during 'docs serve' command -time: 2023-05-08T14:25:18.376379-04:00 -custom: - Author: jtcohen6 - Issue: "7553" diff --git a/.changes/1.5.1/Fixes-20230509-123159.yaml b/.changes/1.5.1/Fixes-20230509-123159.yaml deleted file mode 100644 index 0257e4b1993..00000000000 --- a/.changes/1.5.1/Fixes-20230509-123159.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Fixes -body: Pin protobuf to greater than 4.0.0 -time: 2023-05-09T12:31:59.019718-04:00 -custom: - Author: gshank - Issue: "7565" diff --git a/.changes/1.5.1/Fixes-20230509-165007.yaml b/.changes/1.5.1/Fixes-20230509-165007.yaml deleted file mode 100644 index 0c0f06b0525..00000000000 --- a/.changes/1.5.1/Fixes-20230509-165007.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Fixes -body: Throw error for duplicated versioned and unversioned models -time: 2023-05-09T16:50:07.530882-04:00 -custom: - Author: gshank - Issue: "7487" diff --git a/.changes/1.5.1/Fixes-20230515-123654.yaml b/.changes/1.5.1/Fixes-20230515-123654.yaml deleted file mode 100644 index 001bf7ac3b9..00000000000 --- a/.changes/1.5.1/Fixes-20230515-123654.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Fixes -body: 'Fix: Relative project paths weren''t working with deps' -time: 2023-05-15T12:36:54.807413-05:00 -custom: - Author: iknox-fa - Issue: "7491" diff --git a/.changes/1.5.1/Fixes-20230515-142851.yaml b/.changes/1.5.1/Fixes-20230515-142851.yaml deleted file mode 100644 index 9b04cae5496..00000000000 --- a/.changes/1.5.1/Fixes-20230515-142851.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Fixes -body: Fall back if rendering the password field fails. -time: 2023-05-15T14:28:51.400321-04:00 -custom: - Author: peterallenwebb - Issue: "7629" diff --git a/.changes/1.5.1/Fixes-20230522-135007.yaml b/.changes/1.5.1/Fixes-20230522-135007.yaml deleted file mode 100644 index bef33d2fa30..00000000000 --- a/.changes/1.5.1/Fixes-20230522-135007.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Fixes -body: Stringify flag paths for Jinja context -time: 2023-05-22T13:50:07.897354-04:00 -custom: - Author: gshank - Issue: "7495" diff --git a/.changes/1.5.1/Under the Hood-20230518-114251.yaml b/.changes/1.5.1/Under the Hood-20230518-114251.yaml deleted file mode 100644 index 253322ebf07..00000000000 --- a/.changes/1.5.1/Under the Hood-20230518-114251.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Under the Hood -body: Remove legacy file logger code -time: 2023-05-18T11:42:51.825799-05:00 -custom: - Author: iknox-fa - Issue: NA diff --git a/CHANGELOG.md b/CHANGELOG.md index 81d72b45377..5af2eca27f0 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,11 +5,17 @@ - "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-core/blob/main/CONTRIBUTING.md#adding-changelog-entry) -## dbt-core 1.5.1-rc2 - May 25, 2023 +## dbt-core 1.5.1 - May 30, 2023 ### Fixes +- fix typo in unpacking statically parsed ref ([#7364](https://github.com/dbt-labs/dbt-core/issues/7364)) +- Fix inverted `--print/--no-print` flag ([#7517](https://github.com/dbt-labs/dbt-core/issues/7517)) +- Back-compat for previous return type of 'collect_freshness' macro ([#7489](https://github.com/dbt-labs/dbt-core/issues/7489)) +- print model version in dbt show if specified ([#7407](https://github.com/dbt-labs/dbt-core/issues/7407)) - Allow missing `profiles.yml` for `dbt deps` and `dbt init` ([#7511](https://github.com/dbt-labs/dbt-core/issues/7511)) +- Do not rewrite manifest.json during 'docs serve' command ([#7553](https://github.com/dbt-labs/dbt-core/issues/7553)) +- Pin protobuf to greater than 4.0.0 ([#7565](https://github.com/dbt-labs/dbt-core/issues/7565)) - Throw error for duplicated versioned and unversioned models ([#7487](https://github.com/dbt-labs/dbt-core/issues/7487)) - Fix: Relative project paths weren't working with deps ([#7491](https://github.com/dbt-labs/dbt-core/issues/7491)) - Fall back if rendering the password field fails. ([#7629](https://github.com/dbt-labs/dbt-core/issues/7629)) @@ -21,22 +27,9 @@ ### Contributors - [@iknox-fa](https://github.com/iknox-fa) ([#7491](https://github.com/dbt-labs/dbt-core/issues/7491), [#NA](https://github.com/dbt-labs/dbt-core/issues/NA)) - - -## dbt-core 1.5.1-rc1 - May 12, 2023 - -### Fixes - -- fix typo in unpacking statically parsed ref ([#7364](https://github.com/dbt-labs/dbt-core/issues/7364)) -- Fix inverted `--print/--no-print` flag ([#7517](https://github.com/dbt-labs/dbt-core/issues/7517)) -- Back-compat for previous return type of 'collect_freshness' macro ([#7489](https://github.com/dbt-labs/dbt-core/issues/7489)) -- print model version in dbt show if specified ([#7407](https://github.com/dbt-labs/dbt-core/issues/7407)) -- Do not rewrite manifest.json during 'docs serve' command ([#7553](https://github.com/dbt-labs/dbt-core/issues/7553)) -- Pin protobuf to greater than 4.0.0 ([#7565](https://github.com/dbt-labs/dbt-core/issues/7565)) - -### Contributors - [@thomasgjerdekog](https://github.com/thomasgjerdekog) ([#7517](https://github.com/dbt-labs/dbt-core/issues/7517)) + ## dbt-core 1.5.0 - April 27, 2023 ### Breaking Changes diff --git a/core/dbt/version.py b/core/dbt/version.py index fef69c857ce..3b48470b845 100644 --- a/core/dbt/version.py +++ b/core/dbt/version.py @@ -232,5 +232,5 @@ def _get_adapter_plugin_names() -> Iterator[str]: yield plugin_name -__version__ = "1.5.1rc2" +__version__ = "1.5.1" installed = get_installed_version() diff --git a/core/setup.py b/core/setup.py index d72577cae13..9a02c4ad2d8 100644 --- a/core/setup.py +++ b/core/setup.py @@ -25,7 +25,7 @@ package_name = "dbt-core" -package_version = "1.5.1rc2" +package_version = "1.5.1" description = """With dbt, data analysts and engineers can build analytics \ the way engineers build applications.""" diff --git a/docker/Dockerfile b/docker/Dockerfile index 76bae88497e..06ff905ce75 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -14,12 +14,12 @@ FROM --platform=$build_for python:3.11.2-slim-bullseye as base # N.B. The refs updated automagically every release via bumpversion # N.B. dbt-postgres is currently found in the core codebase so a value of dbt-core@ is correct -ARG dbt_core_ref=dbt-core@v1.5.1rc2 -ARG dbt_postgres_ref=dbt-core@v1.5.1rc2 -ARG dbt_redshift_ref=dbt-redshift@v1.5.1rc2 -ARG dbt_bigquery_ref=dbt-bigquery@v1.5.1rc2 -ARG dbt_snowflake_ref=dbt-snowflake@v1.5.1rc2 -ARG dbt_spark_ref=dbt-spark@v1.5.1rc2 +ARG dbt_core_ref=dbt-core@v1.5.1 +ARG dbt_postgres_ref=dbt-core@v1.5.1 +ARG dbt_redshift_ref=dbt-redshift@v1.5.1 +ARG dbt_bigquery_ref=dbt-bigquery@v1.5.1 +ARG dbt_snowflake_ref=dbt-snowflake@v1.5.1 +ARG dbt_spark_ref=dbt-spark@v1.5.1 # special case args ARG dbt_spark_version=all ARG dbt_third_party diff --git a/plugins/postgres/dbt/adapters/postgres/__version__.py b/plugins/postgres/dbt/adapters/postgres/__version__.py index c338ea9e0ef..0c46db4fafd 100644 --- a/plugins/postgres/dbt/adapters/postgres/__version__.py +++ b/plugins/postgres/dbt/adapters/postgres/__version__.py @@ -1 +1 @@ -version = "1.5.1rc2" +version = "1.5.1" diff --git a/plugins/postgres/setup.py b/plugins/postgres/setup.py index 0ec6fb536d3..b402314ae7c 100644 --- a/plugins/postgres/setup.py +++ b/plugins/postgres/setup.py @@ -41,7 +41,7 @@ def _dbt_psycopg2_name(): package_name = "dbt-postgres" -package_version = "1.5.1rc2" +package_version = "1.5.1" description = """The postgres adapter plugin for dbt (data build tool)""" this_directory = os.path.abspath(os.path.dirname(__file__)) diff --git a/tests/adapter/dbt/tests/adapter/__version__.py b/tests/adapter/dbt/tests/adapter/__version__.py index c338ea9e0ef..0c46db4fafd 100644 --- a/tests/adapter/dbt/tests/adapter/__version__.py +++ b/tests/adapter/dbt/tests/adapter/__version__.py @@ -1 +1 @@ -version = "1.5.1rc2" +version = "1.5.1" diff --git a/tests/adapter/setup.py b/tests/adapter/setup.py index e51a44fa13a..59c3f48f5a7 100644 --- a/tests/adapter/setup.py +++ b/tests/adapter/setup.py @@ -20,7 +20,7 @@ package_name = "dbt-tests-adapter" -package_version = "1.5.1rc2" +package_version = "1.5.1" description = """The dbt adapter tests for adapter plugins""" this_directory = os.path.abspath(os.path.dirname(__file__))