From 1c93c9bb58a14e7e01b7a12dcab6ebd68ac21dbd Mon Sep 17 00:00:00 2001 From: Github Build Bot Date: Thu, 22 Jun 2023 19:27:29 +0000 Subject: [PATCH] Bumping version to 1.6.0b5 and generate changelog --- .bumpversion.cfg | 2 +- .changes/1.6.0-b5.md | 28 ++++++++++++++++ .../Dependencies-20230222-162807.yaml | 0 .../Features-20230613-151507.yaml | 0 .../Features-20230613-151917.yaml | 0 .../Features-20230616-163045.yaml | 0 .../Fixes-20230606-145217.yaml | 0 .../Fixes-20230609-191546.yaml | 0 .../Fixes-20230615-142949.yaml | 0 .../Fixes-20230621-030733.yaml | 0 .../Fixes-20230622-105829.yaml | 0 .../Fixes-20230622-121907.yaml | 0 .../Under the Hood-20230615-163217.yaml | 0 .../Under the Hood-20230616-131503.yaml | 0 .../Under the Hood-20230616-155749.yaml | 0 .../Under the Hood-20230619-135201.yaml | 0 .../Under the Hood-20230620-180852.yaml | 0 CHANGELOG.md | 32 ++++++++++++++++++- core/dbt/version.py | 2 +- core/setup.py | 2 +- docker/Dockerfile | 12 +++---- .../dbt/adapters/postgres/__version__.py | 2 +- plugins/postgres/setup.py | 2 +- .../adapter/dbt/tests/adapter/__version__.py | 2 +- tests/adapter/setup.py | 2 +- 25 files changed, 72 insertions(+), 14 deletions(-) create mode 100644 .changes/1.6.0-b5.md rename .changes/{unreleased => 1.6.0}/Dependencies-20230222-162807.yaml (100%) rename .changes/{unreleased => 1.6.0}/Features-20230613-151507.yaml (100%) rename .changes/{unreleased => 1.6.0}/Features-20230613-151917.yaml (100%) rename .changes/{unreleased => 1.6.0}/Features-20230616-163045.yaml (100%) rename .changes/{unreleased => 1.6.0}/Fixes-20230606-145217.yaml (100%) rename .changes/{unreleased => 1.6.0}/Fixes-20230609-191546.yaml (100%) rename .changes/{unreleased => 1.6.0}/Fixes-20230615-142949.yaml (100%) rename .changes/{unreleased => 1.6.0}/Fixes-20230621-030733.yaml (100%) rename .changes/{unreleased => 1.6.0}/Fixes-20230622-105829.yaml (100%) rename .changes/{unreleased => 1.6.0}/Fixes-20230622-121907.yaml (100%) rename .changes/{unreleased => 1.6.0}/Under the Hood-20230615-163217.yaml (100%) rename .changes/{unreleased => 1.6.0}/Under the Hood-20230616-131503.yaml (100%) rename .changes/{unreleased => 1.6.0}/Under the Hood-20230616-155749.yaml (100%) rename .changes/{unreleased => 1.6.0}/Under the Hood-20230619-135201.yaml (100%) rename .changes/{unreleased => 1.6.0}/Under the Hood-20230620-180852.yaml (100%) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 215f5b78d6c..ef31dd28540 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.6.0b4 +current_version = 1.6.0b5 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.6.0-b5.md b/.changes/1.6.0-b5.md new file mode 100644 index 00000000000..b433440dfa2 --- /dev/null +++ b/.changes/1.6.0-b5.md @@ -0,0 +1,28 @@ +## dbt-core 1.6.0-b5 - June 22, 2023 + +### Features + +- Enable setting packages in dependencies.yml ([#7372](https://github.com/dbt-labs/dbt-core/issues/7372), [#7736](https://github.com/dbt-labs/dbt-core/issues/7736)) +- Add AdapterRegistered event log message ([#7038](https://github.com/dbt-labs/dbt-core/issues/7038)) +- Further integrate semantic models into the DAG and partial parsing module ([#7800](https://github.com/dbt-labs/dbt-core/issues/7800)) + +### Fixes + +- Fix regression in `run-operation` to not require the name of the package to run ([#7753](https://github.com/dbt-labs/dbt-core/issues/7753)) +- Allow dbt show --inline preview of private models ([#7837](https://github.com/dbt-labs/dbt-core/issues/7837)) +- Skip jinja parsing of metric filters ([#7864](https://github.com/dbt-labs/dbt-core/issues/7864)) +- Fix a bad implicit string conversion regression in debug --config-dir code. ([#7774](https://github.com/dbt-labs/dbt-core/issues/7774)) +- Fix UninstalledPackagesFoundError error message to use correct packages specified path ([#7921](https://github.com/dbt-labs/dbt-core/issues/7921)) +- Fix: safe remove of external nodes from nodes.depends_on ([#7924](https://github.com/dbt-labs/dbt-core/issues/7924)) + +### Under the Hood + +- Upgrade to dbt-semantic-interfaces v0.1.0dev5 ([#7853](https://github.com/dbt-labs/dbt-core/issues/7853)) +- Refactoring: consolidating public_nodes and nodes ([#7890](https://github.com/dbt-labs/dbt-core/issues/7890)) +- Resolve SemanticModel ref is the same way as other refs ([#7822](https://github.com/dbt-labs/dbt-core/issues/7822)) +- Move from dbt-semantic-intefaces 0.1.0dev5 to 0.1.0dev7 ([#7898](https://github.com/dbt-labs/dbt-core/issues/7898)) +- Don't jinja render packages from dependencies.yml ([#7905](https://github.com/dbt-labs/dbt-core/issues/7905)) + +### Dependencies + +- Bump mypy from 0.981 to 1.0.1 ([#7027](https://github.com/dbt-labs/dbt-core/pull/7027)) diff --git a/.changes/unreleased/Dependencies-20230222-162807.yaml b/.changes/1.6.0/Dependencies-20230222-162807.yaml similarity index 100% rename from .changes/unreleased/Dependencies-20230222-162807.yaml rename to .changes/1.6.0/Dependencies-20230222-162807.yaml diff --git a/.changes/unreleased/Features-20230613-151507.yaml b/.changes/1.6.0/Features-20230613-151507.yaml similarity index 100% rename from .changes/unreleased/Features-20230613-151507.yaml rename to .changes/1.6.0/Features-20230613-151507.yaml diff --git a/.changes/unreleased/Features-20230613-151917.yaml b/.changes/1.6.0/Features-20230613-151917.yaml similarity index 100% rename from .changes/unreleased/Features-20230613-151917.yaml rename to .changes/1.6.0/Features-20230613-151917.yaml diff --git a/.changes/unreleased/Features-20230616-163045.yaml b/.changes/1.6.0/Features-20230616-163045.yaml similarity index 100% rename from .changes/unreleased/Features-20230616-163045.yaml rename to .changes/1.6.0/Features-20230616-163045.yaml diff --git a/.changes/unreleased/Fixes-20230606-145217.yaml b/.changes/1.6.0/Fixes-20230606-145217.yaml similarity index 100% rename from .changes/unreleased/Fixes-20230606-145217.yaml rename to .changes/1.6.0/Fixes-20230606-145217.yaml diff --git a/.changes/unreleased/Fixes-20230609-191546.yaml b/.changes/1.6.0/Fixes-20230609-191546.yaml similarity index 100% rename from .changes/unreleased/Fixes-20230609-191546.yaml rename to .changes/1.6.0/Fixes-20230609-191546.yaml diff --git a/.changes/unreleased/Fixes-20230615-142949.yaml b/.changes/1.6.0/Fixes-20230615-142949.yaml similarity index 100% rename from .changes/unreleased/Fixes-20230615-142949.yaml rename to .changes/1.6.0/Fixes-20230615-142949.yaml diff --git a/.changes/unreleased/Fixes-20230621-030733.yaml b/.changes/1.6.0/Fixes-20230621-030733.yaml similarity index 100% rename from .changes/unreleased/Fixes-20230621-030733.yaml rename to .changes/1.6.0/Fixes-20230621-030733.yaml diff --git a/.changes/unreleased/Fixes-20230622-105829.yaml b/.changes/1.6.0/Fixes-20230622-105829.yaml similarity index 100% rename from .changes/unreleased/Fixes-20230622-105829.yaml rename to .changes/1.6.0/Fixes-20230622-105829.yaml diff --git a/.changes/unreleased/Fixes-20230622-121907.yaml b/.changes/1.6.0/Fixes-20230622-121907.yaml similarity index 100% rename from .changes/unreleased/Fixes-20230622-121907.yaml rename to .changes/1.6.0/Fixes-20230622-121907.yaml diff --git a/.changes/unreleased/Under the Hood-20230615-163217.yaml b/.changes/1.6.0/Under the Hood-20230615-163217.yaml similarity index 100% rename from .changes/unreleased/Under the Hood-20230615-163217.yaml rename to .changes/1.6.0/Under the Hood-20230615-163217.yaml diff --git a/.changes/unreleased/Under the Hood-20230616-131503.yaml b/.changes/1.6.0/Under the Hood-20230616-131503.yaml similarity index 100% rename from .changes/unreleased/Under the Hood-20230616-131503.yaml rename to .changes/1.6.0/Under the Hood-20230616-131503.yaml diff --git a/.changes/unreleased/Under the Hood-20230616-155749.yaml b/.changes/1.6.0/Under the Hood-20230616-155749.yaml similarity index 100% rename from .changes/unreleased/Under the Hood-20230616-155749.yaml rename to .changes/1.6.0/Under the Hood-20230616-155749.yaml diff --git a/.changes/unreleased/Under the Hood-20230619-135201.yaml b/.changes/1.6.0/Under the Hood-20230619-135201.yaml similarity index 100% rename from .changes/unreleased/Under the Hood-20230619-135201.yaml rename to .changes/1.6.0/Under the Hood-20230619-135201.yaml diff --git a/.changes/unreleased/Under the Hood-20230620-180852.yaml b/.changes/1.6.0/Under the Hood-20230620-180852.yaml similarity index 100% rename from .changes/unreleased/Under the Hood-20230620-180852.yaml rename to .changes/1.6.0/Under the Hood-20230620-180852.yaml diff --git a/CHANGELOG.md b/CHANGELOG.md index 07b0214d0b3..3f79789dc9d 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,37 @@ - "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.0-b5 - June 22, 2023 + +### Features + +- Enable setting packages in dependencies.yml ([#7372](https://github.com/dbt-labs/dbt-core/issues/7372), [#7736](https://github.com/dbt-labs/dbt-core/issues/7736)) +- Add AdapterRegistered event log message ([#7038](https://github.com/dbt-labs/dbt-core/issues/7038)) +- Further integrate semantic models into the DAG and partial parsing module ([#7800](https://github.com/dbt-labs/dbt-core/issues/7800)) + +### Fixes + +- Fix regression in `run-operation` to not require the name of the package to run ([#7753](https://github.com/dbt-labs/dbt-core/issues/7753)) +- Allow dbt show --inline preview of private models ([#7837](https://github.com/dbt-labs/dbt-core/issues/7837)) +- Skip jinja parsing of metric filters ([#7864](https://github.com/dbt-labs/dbt-core/issues/7864)) +- Fix a bad implicit string conversion regression in debug --config-dir code. ([#7774](https://github.com/dbt-labs/dbt-core/issues/7774)) +- Fix UninstalledPackagesFoundError error message to use correct packages specified path ([#7921](https://github.com/dbt-labs/dbt-core/issues/7921)) +- Fix: safe remove of external nodes from nodes.depends_on ([#7924](https://github.com/dbt-labs/dbt-core/issues/7924)) + +### Under the Hood + +- Upgrade to dbt-semantic-interfaces v0.1.0dev5 ([#7853](https://github.com/dbt-labs/dbt-core/issues/7853)) +- Refactoring: consolidating public_nodes and nodes ([#7890](https://github.com/dbt-labs/dbt-core/issues/7890)) +- Resolve SemanticModel ref is the same way as other refs ([#7822](https://github.com/dbt-labs/dbt-core/issues/7822)) +- Move from dbt-semantic-intefaces 0.1.0dev5 to 0.1.0dev7 ([#7898](https://github.com/dbt-labs/dbt-core/issues/7898)) +- Don't jinja render packages from dependencies.yml ([#7905](https://github.com/dbt-labs/dbt-core/issues/7905)) + +### Dependencies + +- Bump mypy from 0.981 to 1.0.1 ([#7027](https://github.com/dbt-labs/dbt-core/pull/7027)) + + + ## dbt-core 1.6.0-b4 - June 13, 2023 ### Fixes @@ -27,7 +58,6 @@ - [@drewbanin](https://github.com/drewbanin) ([#201](https://github.com/dbt-labs/dbt-core/issues/201)) - [@mirnawong1](https://github.com/mirnawong1) ([#7789](https://github.com/dbt-labs/dbt-core/issues/7789)) - ## dbt-core 1.6.0-b3 - June 08, 2023 ### Breaking Changes diff --git a/core/dbt/version.py b/core/dbt/version.py index 782a058b202..aff84d65f12 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.0b4" +__version__ = "1.6.0b5" installed = get_installed_version() diff --git a/core/setup.py b/core/setup.py index a823ba6a7ec..a79cecaaa16 100644 --- a/core/setup.py +++ b/core/setup.py @@ -25,7 +25,7 @@ package_name = "dbt-core" -package_version = "1.6.0b4" +package_version = "1.6.0b5" description = """With dbt, data analysts and engineers can build analytics \ the way engineers build applications.""" diff --git a/docker/Dockerfile b/docker/Dockerfile index d900158888a..e3e588702e2 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.6.0b4 -ARG dbt_postgres_ref=dbt-core@v1.6.0b4 -ARG dbt_redshift_ref=dbt-redshift@v1.6.0b4 -ARG dbt_bigquery_ref=dbt-bigquery@v1.6.0b4 -ARG dbt_snowflake_ref=dbt-snowflake@v1.6.0b4 -ARG dbt_spark_ref=dbt-spark@v1.6.0b4 +ARG dbt_core_ref=dbt-core@v1.6.0b5 +ARG dbt_postgres_ref=dbt-core@v1.6.0b5 +ARG dbt_redshift_ref=dbt-redshift@v1.6.0b5 +ARG dbt_bigquery_ref=dbt-bigquery@v1.6.0b5 +ARG dbt_snowflake_ref=dbt-snowflake@v1.6.0b5 +ARG dbt_spark_ref=dbt-spark@v1.6.0b5 # 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 09185249665..da9f11e349d 100644 --- a/plugins/postgres/dbt/adapters/postgres/__version__.py +++ b/plugins/postgres/dbt/adapters/postgres/__version__.py @@ -1 +1 @@ -version = "1.6.0b4" +version = "1.6.0b5" diff --git a/plugins/postgres/setup.py b/plugins/postgres/setup.py index 98fe08e3edd..1b2e26e7a39 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.0b4" +package_version = "1.6.0b5" 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 09185249665..da9f11e349d 100644 --- a/tests/adapter/dbt/tests/adapter/__version__.py +++ b/tests/adapter/dbt/tests/adapter/__version__.py @@ -1 +1 @@ -version = "1.6.0b4" +version = "1.6.0b5" diff --git a/tests/adapter/setup.py b/tests/adapter/setup.py index 7e0a487ec9c..732661b4261 100644 --- a/tests/adapter/setup.py +++ b/tests/adapter/setup.py @@ -20,7 +20,7 @@ package_name = "dbt-tests-adapter" -package_version = "1.6.0b4" +package_version = "1.6.0b5" description = """The dbt adapter tests for adapter plugins""" this_directory = os.path.abspath(os.path.dirname(__file__))