From 3b524cad91ba10c51ffe853c4d04e31b85f285eb Mon Sep 17 00:00:00 2001 From: Github Build Bot Date: Thu, 14 Mar 2024 00:51:54 +0000 Subject: [PATCH] Bumping version to 1.7.10 and generate changelog --- .bumpversion.cfg | 2 +- .changes/1.7.10.md | 11 +++++++++++ .../unreleased/Dependencies-20240222-102947.yaml | 6 ------ .changes/unreleased/Fixes-20240226-173227.yaml | 6 ------ .changes/unreleased/Fixes-20240301-135536.yaml | 6 ------ .changes/unreleased/Fixes-20240307-142459.yaml | 6 ------ CHANGELOG.md | 15 ++++++++++++++- 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 +- 14 files changed, 38 insertions(+), 38 deletions(-) create mode 100644 .changes/1.7.10.md delete mode 100644 .changes/unreleased/Dependencies-20240222-102947.yaml delete mode 100644 .changes/unreleased/Fixes-20240226-173227.yaml delete mode 100644 .changes/unreleased/Fixes-20240301-135536.yaml delete mode 100644 .changes/unreleased/Fixes-20240307-142459.yaml diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 8fb51b0e717..82f2fae4b2f 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.7.9 +current_version = 1.7.10 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.7.10.md b/.changes/1.7.10.md new file mode 100644 index 00000000000..e9a47911665 --- /dev/null +++ b/.changes/1.7.10.md @@ -0,0 +1,11 @@ +## dbt-core 1.7.10 - March 14, 2024 + +### Fixes + +- Do not add duplicate input_measures ([#9360](https://github.com/dbt-labs/dbt-core/issues/9360)) +- Fix partial parsing `KeyError` on deleted schema files ([#8860](https://github.com/dbt-labs/dbt-core/issues/8860)) +- Support saved queries in `dbt list` ([#9532](https://github.com/dbt-labs/dbt-core/issues/9532)) + +### Dependencies + +- Restrict protobuf to 4.* versions ([#9566](https://github.com/dbt-labs/dbt-core/pull/9566)) diff --git a/.changes/unreleased/Dependencies-20240222-102947.yaml b/.changes/unreleased/Dependencies-20240222-102947.yaml deleted file mode 100644 index 9c21d51e21e..00000000000 --- a/.changes/unreleased/Dependencies-20240222-102947.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Dependencies -body: Restrict protobuf to 4.* versions -time: 2024-02-22T10:29:47.595435-08:00 -custom: - Author: QMalcolm - PR: "9566" diff --git a/.changes/unreleased/Fixes-20240226-173227.yaml b/.changes/unreleased/Fixes-20240226-173227.yaml deleted file mode 100644 index fa1bf0ab8cf..00000000000 --- a/.changes/unreleased/Fixes-20240226-173227.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Fixes -body: Do not add duplicate input_measures -time: 2024-02-26T17:32:27.837427-05:00 -custom: - Author: gshank - Issue: "9360" diff --git a/.changes/unreleased/Fixes-20240301-135536.yaml b/.changes/unreleased/Fixes-20240301-135536.yaml deleted file mode 100644 index 2a96bd7eeec..00000000000 --- a/.changes/unreleased/Fixes-20240301-135536.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Fixes -body: Fix partial parsing `KeyError` on deleted schema files -time: 2024-03-01T13:55:36.533176-08:00 -custom: - Author: QMalcolm - Issue: "8860" diff --git a/.changes/unreleased/Fixes-20240307-142459.yaml b/.changes/unreleased/Fixes-20240307-142459.yaml deleted file mode 100644 index 14c08da2816..00000000000 --- a/.changes/unreleased/Fixes-20240307-142459.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Fixes -body: Support saved queries in `dbt list` -time: 2024-03-07T14:24:59.530072-05:00 -custom: - Author: QMalcolm jtcohen6 - Issue: "9532" diff --git a/CHANGELOG.md b/CHANGELOG.md index baea75edc0d..7b0e9fcffb7 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,20 @@ - "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.7.10 - March 14, 2024 + +### Fixes + +- Do not add duplicate input_measures ([#9360](https://github.com/dbt-labs/dbt-core/issues/9360)) +- Fix partial parsing `KeyError` on deleted schema files ([#8860](https://github.com/dbt-labs/dbt-core/issues/8860)) +- Support saved queries in `dbt list` ([#9532](https://github.com/dbt-labs/dbt-core/issues/9532)) + +### Dependencies + +- Restrict protobuf to 4.* versions ([#9566](https://github.com/dbt-labs/dbt-core/pull/9566)) + + + ## dbt-core 1.7.9 - February 28, 2024 ### Fixes @@ -24,7 +38,6 @@ ### Contributors - [@l1xnan](https://github.com/l1xnan) ([#9007](https://github.com/dbt-labs/dbt-core/issues/9007)) - ## dbt-core 1.7.8 - February 14, 2024 ### Fixes diff --git a/core/dbt/version.py b/core/dbt/version.py index 1799ed6b8c3..70342595b6c 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.7.9" +__version__ = "1.7.10" installed = get_installed_version() diff --git a/core/setup.py b/core/setup.py index f3f51ba5ad2..621bfc74bf7 100644 --- a/core/setup.py +++ b/core/setup.py @@ -25,7 +25,7 @@ package_name = "dbt-core" -package_version = "1.7.9" +package_version = "1.7.10" description = """With dbt, data analysts and engineers can build analytics \ the way engineers build applications.""" diff --git a/docker/Dockerfile b/docker/Dockerfile index ae9cb508628..a7c69121754 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.7.9 -ARG dbt_postgres_ref=dbt-core@v1.7.9 -ARG dbt_redshift_ref=dbt-redshift@v1.7.9 -ARG dbt_bigquery_ref=dbt-bigquery@v1.7.9 -ARG dbt_snowflake_ref=dbt-snowflake@v1.7.9 -ARG dbt_spark_ref=dbt-spark@v1.7.9 +ARG dbt_core_ref=dbt-core@v1.7.10 +ARG dbt_postgres_ref=dbt-core@v1.7.10 +ARG dbt_redshift_ref=dbt-redshift@v1.7.10 +ARG dbt_bigquery_ref=dbt-bigquery@v1.7.10 +ARG dbt_snowflake_ref=dbt-snowflake@v1.7.10 +ARG dbt_spark_ref=dbt-spark@v1.7.10 # 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 52a993a81b5..d32d8189efa 100644 --- a/plugins/postgres/dbt/adapters/postgres/__version__.py +++ b/plugins/postgres/dbt/adapters/postgres/__version__.py @@ -1 +1 @@ -version = "1.7.9" +version = "1.7.10" diff --git a/plugins/postgres/setup.py b/plugins/postgres/setup.py index b20f639ef77..506d33268a4 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.7.9" +package_version = "1.7.10" 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 52a993a81b5..d32d8189efa 100644 --- a/tests/adapter/dbt/tests/adapter/__version__.py +++ b/tests/adapter/dbt/tests/adapter/__version__.py @@ -1 +1 @@ -version = "1.7.9" +version = "1.7.10" diff --git a/tests/adapter/setup.py b/tests/adapter/setup.py index 99ef6f2e504..4705297ce52 100644 --- a/tests/adapter/setup.py +++ b/tests/adapter/setup.py @@ -20,7 +20,7 @@ package_name = "dbt-tests-adapter" -package_version = "1.7.9" +package_version = "1.7.10" description = """The dbt adapter tests for adapter plugins""" this_directory = os.path.abspath(os.path.dirname(__file__))