From 8d74b98a0f1c0b928713fbf19f553716f9e138b0 Mon Sep 17 00:00:00 2001 From: Github Build Bot Date: Wed, 20 Sep 2023 19:05:36 +0000 Subject: [PATCH] Bumping version to 1.4.8 and generate changelog --- .bumpversion.cfg | 2 +- .changes/1.4.8.md | 6 ++++++ .changes/unreleased/Fixes-20230515-142851.yaml | 6 ------ .changes/unreleased/Fixes-20230830-150803.yaml | 6 ------ CHANGELOG.md | 11 +++++++++-- core/dbt/version.py | 2 +- core/setup.py | 2 +- docker/Dockerfile | 4 ++-- plugins/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 +- 12 files changed, 24 insertions(+), 23 deletions(-) create mode 100644 .changes/1.4.8.md delete mode 100644 .changes/unreleased/Fixes-20230515-142851.yaml delete mode 100644 .changes/unreleased/Fixes-20230830-150803.yaml diff --git a/.bumpversion.cfg b/.bumpversion.cfg index ecbfec2b102..c84626f0273 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.4.7 +current_version = 1.4.8 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.4.8.md b/.changes/1.4.8.md new file mode 100644 index 00000000000..af48512efc2 --- /dev/null +++ b/.changes/1.4.8.md @@ -0,0 +1,6 @@ +## dbt-core 1.4.8 - September 20, 2023 + +### Fixes + +- Exclude password fields from Jinja rendering. ([#7629](https://github.com/dbt-labs/dbt-core/issues/7629)) +- Fix snapshot success message ([#7583](https://github.com/dbt-labs/dbt-core/issues/7583)) diff --git a/.changes/unreleased/Fixes-20230515-142851.yaml b/.changes/unreleased/Fixes-20230515-142851.yaml deleted file mode 100644 index a64f3a4f88b..00000000000 --- a/.changes/unreleased/Fixes-20230515-142851.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Fixes -body: Exclude password fields from Jinja rendering. -time: 2023-05-15T14:28:51.400321-04:00 -custom: - Author: peterallenwebb - Issue: "7629" diff --git a/.changes/unreleased/Fixes-20230830-150803.yaml b/.changes/unreleased/Fixes-20230830-150803.yaml deleted file mode 100644 index b26e7e446dd..00000000000 --- a/.changes/unreleased/Fixes-20230830-150803.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Fixes -body: Fix snapshot success message -time: 2023-08-30T15:08:03.429373-04:00 -custom: - Author: gshank - Issue: "7583" diff --git a/CHANGELOG.md b/CHANGELOG.md index 5c62c7fa66e..525ecb82411 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,14 +5,21 @@ - "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.4.8 - September 20, 2023 + +### Fixes + +- Exclude password fields from Jinja rendering. ([#7629](https://github.com/dbt-labs/dbt-core/issues/7629)) +- Fix snapshot success message ([#7583](https://github.com/dbt-labs/dbt-core/issues/7583)) + + + ## dbt-core 1.4.7 - August 04, 2023 ### Dependencies - Pin click>=7.0,<8.1.4 ([#8050](https://github.com/dbt-labs/dbt-core/pull/8050)) - - ## dbt-core 1.4.6 - April 19, 2023 ### Fixes diff --git a/core/dbt/version.py b/core/dbt/version.py index ec05200031f..f349cbe12d7 100644 --- a/core/dbt/version.py +++ b/core/dbt/version.py @@ -235,5 +235,5 @@ def _get_adapter_plugin_names() -> Iterator[str]: yield plugin_name -__version__ = "1.4.7" +__version__ = "1.4.8" installed = get_installed_version() diff --git a/core/setup.py b/core/setup.py index 85fe7630b32..546be1c63c6 100644 --- a/core/setup.py +++ b/core/setup.py @@ -25,7 +25,7 @@ package_name = "dbt-core" -package_version = "1.4.7" +package_version = "1.4.8" description = """With dbt, data analysts and engineers can build analytics \ the way engineers build applications.""" diff --git a/docker/Dockerfile b/docker/Dockerfile index 05e581150d6..fedfdb449c2 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -14,8 +14,8 @@ FROM --platform=$build_for python:3.10.7-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.4.7 -ARG dbt_postgres_ref=dbt-core@v1.4.7 +ARG dbt_core_ref=dbt-core@v1.4.8 +ARG dbt_postgres_ref=dbt-core@v1.4.8 ARG dbt_redshift_ref=dbt-redshift@v1.4.0 ARG dbt_bigquery_ref=dbt-bigquery@v1.4.0 ARG dbt_snowflake_ref=dbt-snowflake@v1.4.0 diff --git a/plugins/postgres/dbt/adapters/postgres/__version__.py b/plugins/postgres/dbt/adapters/postgres/__version__.py index 42bff48e666..622ba3ddf45 100644 --- a/plugins/postgres/dbt/adapters/postgres/__version__.py +++ b/plugins/postgres/dbt/adapters/postgres/__version__.py @@ -1 +1 @@ -version = "1.4.7" +version = "1.4.8" diff --git a/plugins/postgres/setup.py b/plugins/postgres/setup.py index fc417d46501..58dac68ddc3 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.4.7" +package_version = "1.4.8" 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 42bff48e666..622ba3ddf45 100644 --- a/tests/adapter/dbt/tests/adapter/__version__.py +++ b/tests/adapter/dbt/tests/adapter/__version__.py @@ -1 +1 @@ -version = "1.4.7" +version = "1.4.8" diff --git a/tests/adapter/setup.py b/tests/adapter/setup.py index 03817dfc9d8..f8d91303ed1 100644 --- a/tests/adapter/setup.py +++ b/tests/adapter/setup.py @@ -20,7 +20,7 @@ package_name = "dbt-tests-adapter" -package_version = "1.4.7" +package_version = "1.4.8" description = """The dbt adapter tests for adapter plugins""" this_directory = os.path.abspath(os.path.dirname(__file__))