diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 82f2fae4b2f..5e8a55a1560 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.7.10 +current_version = 1.7.11 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.7.11.md b/.changes/1.7.11.md new file mode 100644 index 00000000000..e93fc508a9f --- /dev/null +++ b/.changes/1.7.11.md @@ -0,0 +1,6 @@ +## dbt-core 1.7.11 - March 28, 2024 + +### Fixes + +- Tighten exception handling to avoid worker thread hangs. ([#9583](https://github.com/dbt-labs/dbt-core/issues/9583)) +- Add field wrapper to BaseRelation members that were missing it. ([#9681](https://github.com/dbt-labs/dbt-core/issues/9681)) diff --git a/.changes/unreleased/Fixes-20240216-145632.yaml b/.changes/unreleased/Fixes-20240216-145632.yaml deleted file mode 100644 index a02027f66a5..00000000000 --- a/.changes/unreleased/Fixes-20240216-145632.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Fixes -body: Tighten exception handling to avoid worker thread hangs. -time: 2024-02-16T14:56:32.858967-05:00 -custom: - Author: peterallenwebb - Issue: "9583" diff --git a/.changes/unreleased/Fixes-20240226-215842.yaml b/.changes/unreleased/Fixes-20240226-215842.yaml deleted file mode 100644 index b170c4cf44d..00000000000 --- a/.changes/unreleased/Fixes-20240226-215842.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Fixes -body: Add field wrapper to BaseRelation members that were missing it. -time: 2024-02-26T21:58:42.161273-08:00 -custom: - Author: versusfacit - Issue: "9681" diff --git a/CHANGELOG.md b/CHANGELOG.md index 7b0e9fcffb7..eddfe4b1683 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.7.11 - March 28, 2024 + +### Fixes + +- Tighten exception handling to avoid worker thread hangs. ([#9583](https://github.com/dbt-labs/dbt-core/issues/9583)) +- Add field wrapper to BaseRelation members that were missing it. ([#9681](https://github.com/dbt-labs/dbt-core/issues/9681)) + + + ## dbt-core 1.7.10 - March 14, 2024 ### Fixes @@ -17,8 +26,6 @@ - Restrict protobuf to 4.* versions ([#9566](https://github.com/dbt-labs/dbt-core/pull/9566)) - - ## dbt-core 1.7.9 - February 28, 2024 ### Fixes diff --git a/core/dbt/version.py b/core/dbt/version.py index 70342595b6c..1871f8fda9c 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.10" +__version__ = "1.7.11" installed = get_installed_version() diff --git a/core/setup.py b/core/setup.py index 621bfc74bf7..aa35f50bf23 100644 --- a/core/setup.py +++ b/core/setup.py @@ -25,7 +25,7 @@ package_name = "dbt-core" -package_version = "1.7.10" +package_version = "1.7.11" description = """With dbt, data analysts and engineers can build analytics \ the way engineers build applications.""" diff --git a/docker/Dockerfile b/docker/Dockerfile index a7c69121754..f451a756a60 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.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 +ARG dbt_core_ref=dbt-core@v1.7.11 +ARG dbt_postgres_ref=dbt-core@v1.7.11 +ARG dbt_redshift_ref=dbt-redshift@v1.7.11 +ARG dbt_bigquery_ref=dbt-bigquery@v1.7.11 +ARG dbt_snowflake_ref=dbt-snowflake@v1.7.11 +ARG dbt_spark_ref=dbt-spark@v1.7.11 # 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 d32d8189efa..fadfd3b22f5 100644 --- a/plugins/postgres/dbt/adapters/postgres/__version__.py +++ b/plugins/postgres/dbt/adapters/postgres/__version__.py @@ -1 +1 @@ -version = "1.7.10" +version = "1.7.11" diff --git a/plugins/postgres/setup.py b/plugins/postgres/setup.py index 506d33268a4..16af5a97524 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.10" +package_version = "1.7.11" 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 d32d8189efa..fadfd3b22f5 100644 --- a/tests/adapter/dbt/tests/adapter/__version__.py +++ b/tests/adapter/dbt/tests/adapter/__version__.py @@ -1 +1 @@ -version = "1.7.10" +version = "1.7.11" diff --git a/tests/adapter/setup.py b/tests/adapter/setup.py index 4705297ce52..74068b44c72 100644 --- a/tests/adapter/setup.py +++ b/tests/adapter/setup.py @@ -20,7 +20,7 @@ package_name = "dbt-tests-adapter" -package_version = "1.7.10" +package_version = "1.7.11" description = """The dbt adapter tests for adapter plugins""" this_directory = os.path.abspath(os.path.dirname(__file__))