From 7083c0e14fade4cf728c3453c65c1a5c745c31a4 Mon Sep 17 00:00:00 2001 From: Github Build Bot Date: Thu, 27 Jul 2023 16:54:16 +0000 Subject: [PATCH] Bumping version to 1.5.4rc1 and generate changelog --- .bumpversion.cfg | 2 +- .changes/1.5.4-rc1.md | 10 ++++++++++ .../Fixes-20230720-161513.yaml | 0 .../Fixes-20230726-104448.yaml | 0 .../Under the Hood-20230719-124611.yaml | 0 CHANGELOG.md | 14 +++++++++++++- core/dbt/version.py | 2 +- core/setup.py | 2 +- docker/Dockerfile | 12 ++++++------ .../postgres/dbt/adapters/postgres/__version__.py | 2 +- plugins/postgres/setup.py | 2 +- tests/adapter/dbt/tests/adapter/__version__.py | 2 +- tests/adapter/setup.py | 2 +- 13 files changed, 36 insertions(+), 14 deletions(-) create mode 100644 .changes/1.5.4-rc1.md rename .changes/{unreleased => 1.5.4}/Fixes-20230720-161513.yaml (100%) rename .changes/{unreleased => 1.5.4}/Fixes-20230726-104448.yaml (100%) rename .changes/{unreleased => 1.5.4}/Under the Hood-20230719-124611.yaml (100%) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 2b1e9266eea..ca53c89f090 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.5.3 +current_version = 1.5.4rc1 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.5.4-rc1.md b/.changes/1.5.4-rc1.md new file mode 100644 index 00000000000..8e53a0e2e22 --- /dev/null +++ b/.changes/1.5.4-rc1.md @@ -0,0 +1,10 @@ +## dbt-core 1.5.4-rc1 - July 27, 2023 + +### Fixes + +- Ensure `warn_error_options` get serialized in `invocation_args_dict` ([#7694](https://github.com/dbt-labs/dbt-core/issues/7694)) +- Improve handling of CTE injection with ephemeral models ([#8213](https://github.com/dbt-labs/dbt-core/issues/8213)) + +### Under the Hood + +- Refactor flaky test pp_versioned_models ([#7781](https://github.com/dbt-labs/dbt-core/issues/7781)) diff --git a/.changes/unreleased/Fixes-20230720-161513.yaml b/.changes/1.5.4/Fixes-20230720-161513.yaml similarity index 100% rename from .changes/unreleased/Fixes-20230720-161513.yaml rename to .changes/1.5.4/Fixes-20230720-161513.yaml diff --git a/.changes/unreleased/Fixes-20230726-104448.yaml b/.changes/1.5.4/Fixes-20230726-104448.yaml similarity index 100% rename from .changes/unreleased/Fixes-20230726-104448.yaml rename to .changes/1.5.4/Fixes-20230726-104448.yaml diff --git a/.changes/unreleased/Under the Hood-20230719-124611.yaml b/.changes/1.5.4/Under the Hood-20230719-124611.yaml similarity index 100% rename from .changes/unreleased/Under the Hood-20230719-124611.yaml rename to .changes/1.5.4/Under the Hood-20230719-124611.yaml diff --git a/CHANGELOG.md b/CHANGELOG.md index d0efe5b70c9..c1e2883c9a7 100755 --- 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-core/blob/main/CONTRIBUTING.md#adding-changelog-entry) +## dbt-core 1.5.4-rc1 - July 27, 2023 + +### Fixes + +- Ensure `warn_error_options` get serialized in `invocation_args_dict` ([#7694](https://github.com/dbt-labs/dbt-core/issues/7694)) +- Improve handling of CTE injection with ephemeral models ([#8213](https://github.com/dbt-labs/dbt-core/issues/8213)) + +### Under the Hood + +- Refactor flaky test pp_versioned_models ([#7781](https://github.com/dbt-labs/dbt-core/issues/7781)) + + + ## dbt-core 1.5.3 - July 17, 2023 ### Fixes @@ -24,7 +37,6 @@ ### Contributors - [@dwreeves](https://github.com/dwreeves) ([#7646](https://github.com/dbt-labs/dbt-core/issues/7646)) - ## dbt-core 1.5.2 - June 22, 2023 ### Features diff --git a/core/dbt/version.py b/core/dbt/version.py index c597476876b..4610f0fd45c 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.3" +__version__ = "1.5.4rc1" installed = get_installed_version() diff --git a/core/setup.py b/core/setup.py index 04f0fc0aa66..a350c77b309 100644 --- a/core/setup.py +++ b/core/setup.py @@ -25,7 +25,7 @@ package_name = "dbt-core" -package_version = "1.5.3" +package_version = "1.5.4rc1" description = """With dbt, data analysts and engineers can build analytics \ the way engineers build applications.""" diff --git a/docker/Dockerfile b/docker/Dockerfile index 7d3d14aec6e..262a64e98d5 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.3 -ARG dbt_postgres_ref=dbt-core@v1.5.3 -ARG dbt_redshift_ref=dbt-redshift@v1.5.3 -ARG dbt_bigquery_ref=dbt-bigquery@v1.5.3 -ARG dbt_snowflake_ref=dbt-snowflake@v1.5.3 -ARG dbt_spark_ref=dbt-spark@v1.5.3 +ARG dbt_core_ref=dbt-core@v1.5.4rc1 +ARG dbt_postgres_ref=dbt-core@v1.5.4rc1 +ARG dbt_redshift_ref=dbt-redshift@v1.5.4rc1 +ARG dbt_bigquery_ref=dbt-bigquery@v1.5.4rc1 +ARG dbt_snowflake_ref=dbt-snowflake@v1.5.4rc1 +ARG dbt_spark_ref=dbt-spark@v1.5.4rc1 # 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 2c924dd4166..b5a8b657b6f 100644 --- a/plugins/postgres/dbt/adapters/postgres/__version__.py +++ b/plugins/postgres/dbt/adapters/postgres/__version__.py @@ -1 +1 @@ -version = "1.5.3" +version = "1.5.4rc1" diff --git a/plugins/postgres/setup.py b/plugins/postgres/setup.py index 3fd7f49a54d..b09e73226d4 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.3" +package_version = "1.5.4rc1" 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 2c924dd4166..b5a8b657b6f 100644 --- a/tests/adapter/dbt/tests/adapter/__version__.py +++ b/tests/adapter/dbt/tests/adapter/__version__.py @@ -1 +1 @@ -version = "1.5.3" +version = "1.5.4rc1" diff --git a/tests/adapter/setup.py b/tests/adapter/setup.py index cafaa822c73..87623408594 100644 --- a/tests/adapter/setup.py +++ b/tests/adapter/setup.py @@ -20,7 +20,7 @@ package_name = "dbt-tests-adapter" -package_version = "1.5.3" +package_version = "1.5.4rc1" description = """The dbt adapter tests for adapter plugins""" this_directory = os.path.abspath(os.path.dirname(__file__))