diff --git a/.bumpversion.cfg b/.bumpversion.cfg index c36408e66ce..3e06ee87370 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.3.5 +current_version = 1.3.6 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.3.6.md b/.changes/1.3.6.md new file mode 100644 index 00000000000..9299357be90 --- /dev/null +++ b/.changes/1.3.6.md @@ -0,0 +1,5 @@ +## dbt-core 1.3.6 - September 20, 2023 + +### Fixes + +- Exclude password fields from Jinja rendering. ([#7629](https://github.com/dbt-labs/dbt-core/issues/7629)) diff --git a/.changes/unreleased/Fixes-20230515-142851.yaml b/.changes/unreleased/Fixes-20230515-142851.yaml deleted file mode 100644 index a64f3a4f88b..00000000000 --- a/.changes/unreleased/Fixes-20230515-142851.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Fixes -body: Exclude password fields from Jinja rendering. -time: 2023-05-15T14:28:51.400321-04:00 -custom: - Author: peterallenwebb - Issue: "7629" diff --git a/CHANGELOG.md b/CHANGELOG.md index 90f544c2015..a2f76baaf37 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ - "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.3.6 - September 20, 2023 + +### Fixes + +- Exclude password fields from Jinja rendering. ([#7629](https://github.com/dbt-labs/dbt-core/issues/7629)) + + + ## dbt-core 1.3.5 - August 04, 2023 ### Fixes @@ -15,8 +23,6 @@ - Pin click>=7.0,<8.1.4 ([#8050](https://github.com/dbt-labs/dbt-core/pull/8050)) - - ## dbt-core 1.3.4 - April 19, 2023 ### Fixes diff --git a/core/dbt/version.py b/core/dbt/version.py index d34a5e81ba5..66466b1fca3 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.3.5" +__version__ = "1.3.6" installed = get_installed_version() diff --git a/core/setup.py b/core/setup.py index 8b009959bdf..5967704be35 100644 --- a/core/setup.py +++ b/core/setup.py @@ -25,7 +25,7 @@ package_name = "dbt-core" -package_version = "1.3.5" +package_version = "1.3.6" description = """With dbt, data analysts and engineers can build analytics \ the way engineers build applications.""" diff --git a/docker/Dockerfile b/docker/Dockerfile index c4f6281436c..fd8713d66db 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -14,8 +14,8 @@ 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.3.5 -ARG dbt_postgres_ref=dbt-core@v1.3.5 +ARG dbt_core_ref=dbt-core@v1.3.6 +ARG dbt_postgres_ref=dbt-core@v1.3.6 ARG dbt_redshift_ref=dbt-redshift@v1.3.0 ARG dbt_bigquery_ref=dbt-bigquery@v1.3.0 ARG dbt_snowflake_ref=dbt-snowflake@v1.3.0 diff --git a/plugins/postgres/dbt/adapters/postgres/__version__.py b/plugins/postgres/dbt/adapters/postgres/__version__.py index a19185e4f5c..9c0c0ee8e1b 100644 --- a/plugins/postgres/dbt/adapters/postgres/__version__.py +++ b/plugins/postgres/dbt/adapters/postgres/__version__.py @@ -1 +1 @@ -version = "1.3.5" +version = "1.3.6" diff --git a/plugins/postgres/setup.py b/plugins/postgres/setup.py index b2011b2d797..74e574ec560 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.3.5" +package_version = "1.3.6" 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 a19185e4f5c..9c0c0ee8e1b 100644 --- a/tests/adapter/dbt/tests/adapter/__version__.py +++ b/tests/adapter/dbt/tests/adapter/__version__.py @@ -1 +1 @@ -version = "1.3.5" +version = "1.3.6" diff --git a/tests/adapter/setup.py b/tests/adapter/setup.py index 4307a81c5ae..83181f517c7 100644 --- a/tests/adapter/setup.py +++ b/tests/adapter/setup.py @@ -20,7 +20,7 @@ package_name = "dbt-tests-adapter" -package_version = "1.3.5" +package_version = "1.3.6" description = """The dbt adapter tests for adapter plugins""" this_directory = os.path.abspath(os.path.dirname(__file__))