From fbaaf1a6e80b8a21ba5420b96d0ac445bce7adf1 Mon Sep 17 00:00:00 2001 From: Github Build Bot Date: Wed, 8 Nov 2023 22:58:40 +0000 Subject: [PATCH] Bumping version to 1.6.8 and generate changelog --- .bumpversion.cfg | 2 +- .changes/1.6.8.md | 6 ++++++ .changes/unreleased/Fixes-20231031-005345.yaml | 6 ------ .changes/unreleased/Fixes-20231031-144837.yaml | 6 ------ CHANGELOG.md | 11 +++++++++-- 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 +- 12 files changed, 28 insertions(+), 27 deletions(-) create mode 100644 .changes/1.6.8.md delete mode 100644 .changes/unreleased/Fixes-20231031-005345.yaml delete mode 100644 .changes/unreleased/Fixes-20231031-144837.yaml diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 43dad772604..73e65f704d1 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.6.7 +current_version = 1.6.8 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.6.8.md b/.changes/1.6.8.md new file mode 100644 index 00000000000..de4a1b25221 --- /dev/null +++ b/.changes/1.6.8.md @@ -0,0 +1,6 @@ +## dbt-core 1.6.8 - November 08, 2023 + +### Fixes + +- Catalog queries now assign the correct type to materialized views ([#8864](https://github.com/dbt-labs/dbt-core/issues/8864)) +- Fix compilation exception running empty seed file and support new Integer agate data_type ([#8895](https://github.com/dbt-labs/dbt-core/issues/8895)) diff --git a/.changes/unreleased/Fixes-20231031-005345.yaml b/.changes/unreleased/Fixes-20231031-005345.yaml deleted file mode 100644 index 56afd9f324e..00000000000 --- a/.changes/unreleased/Fixes-20231031-005345.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Fixes -body: Catalog queries now assign the correct type to materialized views -time: 2023-10-31T00:53:45.486203-04:00 -custom: - Author: mikealfare - Issue: "8864" diff --git a/.changes/unreleased/Fixes-20231031-144837.yaml b/.changes/unreleased/Fixes-20231031-144837.yaml deleted file mode 100644 index 64b15e29dc9..00000000000 --- a/.changes/unreleased/Fixes-20231031-144837.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Fixes -body: Fix compilation exception running empty seed file and support new Integer agate data_type -time: 2023-10-31T14:48:37.774871-04:00 -custom: - Author: gshank - Issue: "8895" diff --git a/CHANGELOG.md b/CHANGELOG.md index b726f56918b..780c5f0d5ed 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,15 @@ - "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.6.8 - November 08, 2023 + +### Fixes + +- Catalog queries now assign the correct type to materialized views ([#8864](https://github.com/dbt-labs/dbt-core/issues/8864)) +- Fix compilation exception running empty seed file and support new Integer agate data_type ([#8895](https://github.com/dbt-labs/dbt-core/issues/8895)) + + + ## dbt-core 1.6.7 - November 01, 2023 ### Fixes @@ -12,8 +21,6 @@ - Add back contract enforcement for temporary tables on postgres ([#8857](https://github.com/dbt-labs/dbt-core/issues/8857)) - Add version to fqn when version==0 ([#8836](https://github.com/dbt-labs/dbt-core/issues/8836)) - - ## dbt-core 1.6.6 - October 11, 2023 ### Features diff --git a/core/dbt/version.py b/core/dbt/version.py index 35cf0ba7b32..5560c09fb1f 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.6.7" +__version__ = "1.6.8" installed = get_installed_version() diff --git a/core/setup.py b/core/setup.py index a2d4d7b309c..0278fa4325d 100644 --- a/core/setup.py +++ b/core/setup.py @@ -25,7 +25,7 @@ package_name = "dbt-core" -package_version = "1.6.7" +package_version = "1.6.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 7482012faeb..534afda0796 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -16,12 +16,12 @@ 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.6.7 -ARG dbt_postgres_ref=dbt-core@v1.6.7 -ARG dbt_redshift_ref=dbt-redshift@v1.6.7 -ARG dbt_bigquery_ref=dbt-bigquery@v1.6.7 -ARG dbt_snowflake_ref=dbt-snowflake@v1.6.7 -ARG dbt_spark_ref=dbt-spark@v1.6.7 +ARG dbt_core_ref=dbt-core@v1.6.8 +ARG dbt_postgres_ref=dbt-core@v1.6.8 +ARG dbt_redshift_ref=dbt-redshift@v1.6.8 +ARG dbt_bigquery_ref=dbt-bigquery@v1.6.8 +ARG dbt_snowflake_ref=dbt-snowflake@v1.6.8 +ARG dbt_spark_ref=dbt-spark@v1.6.8 # 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 26a0a013111..4776ab88951 100644 --- a/plugins/postgres/dbt/adapters/postgres/__version__.py +++ b/plugins/postgres/dbt/adapters/postgres/__version__.py @@ -1 +1 @@ -version = "1.6.7" +version = "1.6.8" diff --git a/plugins/postgres/setup.py b/plugins/postgres/setup.py index 1bee99fbbbe..e7008cbe2e1 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.6.7" +package_version = "1.6.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 26a0a013111..4776ab88951 100644 --- a/tests/adapter/dbt/tests/adapter/__version__.py +++ b/tests/adapter/dbt/tests/adapter/__version__.py @@ -1 +1 @@ -version = "1.6.7" +version = "1.6.8" diff --git a/tests/adapter/setup.py b/tests/adapter/setup.py index fd72a98a656..69f8f441558 100644 --- a/tests/adapter/setup.py +++ b/tests/adapter/setup.py @@ -20,7 +20,7 @@ package_name = "dbt-tests-adapter" -package_version = "1.6.7" +package_version = "1.6.8" description = """The dbt adapter tests for adapter plugins""" this_directory = os.path.abspath(os.path.dirname(__file__))