diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 0718be24bc8..00030f051d7 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.2.2 +current_version = 1.2.3 parse = (?P\d+) \.(?P\d+) \.(?P\d+) diff --git a/.changes/1.2.3.md b/.changes/1.2.3.md new file mode 100644 index 00000000000..6da8d6bcc8b --- /dev/null +++ b/.changes/1.2.3.md @@ -0,0 +1,6 @@ +## dbt-core 1.2.3 - November 16, 2022 +### Features +- This pulls the profile name from args when constructing a RuntimeConfig in lib.py, enabling the dbt-server to override the value that's in the dbt_project.yml ([#6201](https://github.com/dbt-labs/dbt-core/issues/6201), [#6202](https://github.com/dbt-labs/dbt-core/pull/6202)) + +### Contributors +- [@racheldaniel](https://github.com/racheldaniel) ([#6202](https://github.com/dbt-labs/dbt-core/pull/6202)) diff --git a/.changes/unreleased/Features-20221102-150003.yaml b/.changes/unreleased/Features-20221102-150003.yaml deleted file mode 100644 index ca45893dfe9..00000000000 --- a/.changes/unreleased/Features-20221102-150003.yaml +++ /dev/null @@ -1,8 +0,0 @@ -kind: Features -body: This pulls the profile name from args when constructing a RuntimeConfig in lib.py, - enabling the dbt-server to override the value that's in the dbt_project.yml -time: 2022-11-02T15:00:03.000805-05:00 -custom: - Author: racheldaniel - Issue: "6201" - PR: "6202" diff --git a/CHANGELOG.md b/CHANGELOG.md index 5326392afa7..8321bae9f46 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,16 @@ - Changes are listed under the (pre)release in which they first appear. Subsequent releases include changes from previous releases. - "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.2.3 - November 16, 2022 +### Features +- This pulls the profile name from args when constructing a RuntimeConfig in lib.py, enabling the dbt-server to override the value that's in the dbt_project.yml ([#6201](https://github.com/dbt-labs/dbt-core/issues/6201), [#6202](https://github.com/dbt-labs/dbt-core/pull/6202)) + +### Contributors +- [@racheldaniel](https://github.com/racheldaniel) ([#6202](https://github.com/dbt-labs/dbt-core/pull/6202)) + + ## dbt-core 1.2.2 - October 03, 2022 ### Features - This conditionally no-ops warehouse connection at compile depending on an env var, disabling introspection/queries during compilation only. This is a temporary solution to more complex permissions requirements for the semantic layer. ([#5936](https://github.com/dbt-labs/dbt-core/issues/5936), [#5926](https://github.com/dbt-labs/dbt-core/pull/5926)) @@ -13,6 +23,8 @@ ### Contributors - [@drewbanin](https://github.com/drewbanin) ([#5921](https://github.com/dbt-labs/dbt-core/pull/5921)) - [@racheldaniel](https://github.com/racheldaniel) ([#5926](https://github.com/dbt-labs/dbt-core/pull/5926)) + + ## dbt-core 1.2.1 - August 25, 2022 ### Fixes - Fix handling of top-level exceptions ([#5564](https://github.com/dbt-labs/dbt-core/issues/5564), [#5560](https://github.com/dbt-labs/dbt-core/pull/5560)) @@ -22,6 +34,8 @@ ### Contributors - [@varun-dc](https://github.com/varun-dc) ([#5627](https://github.com/dbt-labs/dbt-core/pull/5627)) + + ## dbt-core 1.2.0 - July 26, 2022 ### Features - Add selector method when reading selector definitions ([#4821](https://github.com/dbt-labs/dbt-core/issues/4821), [#4827](https://github.com/dbt-labs/dbt-core/pull/4827)) @@ -125,6 +139,8 @@ - [@tomasfarias](https://github.com/tomasfarias) ([#5432](https://github.com/dbt-labs/dbt-core/pull/5432), [#5209](https://github.com/dbt-labs/dbt-core/pull/5209)) - [@ulisesojeda](https://github.com/ulisesojeda) ([#5366](https://github.com/dbt-labs/dbt-core/pull/5366)) - [@volkangurel](https://github.com/volkangurel) ([#5348](https://github.com/dbt-labs/dbt-core/pull/5348)) + + ## Previous Releases For information on prior major and minor releases, see their changelogs: diff --git a/core/dbt/version.py b/core/dbt/version.py index 16c10d459e9..9fb9ef81d16 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.2.2" +__version__ = "1.2.3" installed = get_installed_version() diff --git a/core/setup.py b/core/setup.py index 6b160d0aedf..11a8981f18f 100644 --- a/core/setup.py +++ b/core/setup.py @@ -25,7 +25,7 @@ package_name = "dbt-core" -package_version = "1.2.2" +package_version = "1.2.3" description = """With dbt, data analysts and engineers can build analytics \ the way engineers build applications.""" diff --git a/docker/Dockerfile b/docker/Dockerfile index 7755b99b22a..f9a073d6ba5 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -14,8 +14,8 @@ FROM --platform=$build_for python:3.10.5-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.2.2 -ARG dbt_postgres_ref=dbt-core@v1.2.2 +ARG dbt_core_ref=dbt-core@v1.2.3 +ARG dbt_postgres_ref=dbt-core@v1.2.3 ARG dbt_redshift_ref=dbt-redshift@v1.2.2 ARG dbt_bigquery_ref=dbt-bigquery@v1.2.0 ARG dbt_snowflake_ref=dbt-snowflake@v1.2.0 diff --git a/plugins/postgres/dbt/adapters/postgres/__version__.py b/plugins/postgres/dbt/adapters/postgres/__version__.py index 2be6f8b040f..71115e0c20a 100644 --- a/plugins/postgres/dbt/adapters/postgres/__version__.py +++ b/plugins/postgres/dbt/adapters/postgres/__version__.py @@ -1 +1 @@ -version = "1.2.2" +version = "1.2.3" diff --git a/plugins/postgres/setup.py b/plugins/postgres/setup.py index 468aab5a7e2..5ed7df2ea9e 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.2.2" +package_version = "1.2.3" 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 2be6f8b040f..71115e0c20a 100644 --- a/tests/adapter/dbt/tests/adapter/__version__.py +++ b/tests/adapter/dbt/tests/adapter/__version__.py @@ -1 +1 @@ -version = "1.2.2" +version = "1.2.3" diff --git a/tests/adapter/setup.py b/tests/adapter/setup.py index dedc4b1d49a..0e30f845085 100644 --- a/tests/adapter/setup.py +++ b/tests/adapter/setup.py @@ -20,7 +20,7 @@ package_name = "dbt-tests-adapter" -package_version = "1.2.2" +package_version = "1.2.3" description = """The dbt adapter tests for adapter plugins""" this_directory = os.path.abspath(os.path.dirname(__file__))