From 193a9dcb18c361cc1ce858d13d03a1dea2309d28 Mon Sep 17 00:00:00 2001 From: Github Build Bot Date: Wed, 19 Apr 2023 13:16:22 +0000 Subject: [PATCH] Bumping version to 1.1.5 and generate changelog --- .bumpversion.cfg | 2 +- .changes/1.1.5.md | 8 ++++++++ .changes/unreleased/Fixes-20230331-095428.yaml | 6 ------ CHANGELOG.md | 11 ++++++++++- core/dbt/version.py | 2 +- core/scripts/create_adapter_plugins.py | 4 ++-- core/setup.py | 2 +- docker/Dockerfile | 4 ++-- plugins/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 +- 12 files changed, 29 insertions(+), 18 deletions(-) create mode 100644 .changes/1.1.5.md delete mode 100644 .changes/unreleased/Fixes-20230331-095428.yaml diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 19df2ddc1a9..3f00543aced 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.1.4 +current_version = 1.1.5 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.1.5.md b/.changes/1.1.5.md new file mode 100644 index 00000000000..57ee2aa739b --- /dev/null +++ b/.changes/1.1.5.md @@ -0,0 +1,8 @@ +## dbt-core 1.1.5 - April 19, 2023 + +### Fixes + +- Improved failed event serialization handling and associated tests ([#7113](https://github.com/dbt-labs/dbt-core/issues/7113), [#7108](https://github.com/dbt-labs/dbt-core/issues/7108), [#6568](https://github.com/dbt-labs/dbt-core/issues/6568)) + +### Contributors +- [@QMalcolm](https://github.com/QMalcolm) ([#7113](https://github.com/dbt-labs/dbt-core/issues/7113), [#7108](https://github.com/dbt-labs/dbt-core/issues/7108), [#6568](https://github.com/dbt-labs/dbt-core/issues/6568)) diff --git a/.changes/unreleased/Fixes-20230331-095428.yaml b/.changes/unreleased/Fixes-20230331-095428.yaml deleted file mode 100644 index 772ce077b7d..00000000000 --- a/.changes/unreleased/Fixes-20230331-095428.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Fixes -body: Improved failed event serialization handling and associated tests -time: 2023-03-31T09:54:28.701963-07:00 -custom: - Author: QMalcolm - Issue: 7113 7108 6568 diff --git a/CHANGELOG.md b/CHANGELOG.md index 3aed5cf77cf..1e3dc476443 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,16 @@ - "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.1.5 - April 19, 2023 + +### Fixes + +- Improved failed event serialization handling and associated tests ([#7113](https://github.com/dbt-labs/dbt-core/issues/7113), [#7108](https://github.com/dbt-labs/dbt-core/issues/7108), [#6568](https://github.com/dbt-labs/dbt-core/issues/6568)) + +### Contributors +- [@QMalcolm](https://github.com/QMalcolm) ([#7113](https://github.com/dbt-labs/dbt-core/issues/7113), [#7108](https://github.com/dbt-labs/dbt-core/issues/7108), [#6568](https://github.com/dbt-labs/dbt-core/issues/6568)) + + ## dbt-core 1.1.4 - February 28, 2023 ### Fixes @@ -14,7 +24,6 @@ ### Contributors - [@sdebruyn](https://github.com/sdebruyn) ([#7077](https://github.com/dbt-labs/dbt-core/issues/7077)) - ## dbt-core 1.1.3 - January 05, 2023 ### Fixes - Bug when partial parsing with an empty schema file ([#4850](https://github.com/dbt-labs/dbt-core/issues/4850), [#](https://github.com/dbt-labs/dbt-core/pull/)) diff --git a/core/dbt/version.py b/core/dbt/version.py index 4dac5ad1554..231255e4b4f 100644 --- a/core/dbt/version.py +++ b/core/dbt/version.py @@ -234,5 +234,5 @@ def _get_adapter_plugin_names() -> Iterator[str]: yield plugin_name -__version__ = "1.1.4" +__version__ = "1.1.5" installed = get_installed_version() diff --git a/core/scripts/create_adapter_plugins.py b/core/scripts/create_adapter_plugins.py index b5ce17376c1..e387ab65a62 100644 --- a/core/scripts/create_adapter_plugins.py +++ b/core/scripts/create_adapter_plugins.py @@ -273,12 +273,12 @@ def parse_args(argv=None): parser.add_argument("adapter") parser.add_argument("--title-case", "-t", default=None) parser.add_argument("--dependency", action="append") - parser.add_argument("--dbt-core-version", default="1.1.4") + parser.add_argument("--dbt-core-version", default="1.1.5") parser.add_argument("--email") parser.add_argument("--author") parser.add_argument("--url") parser.add_argument("--sql", action="store_true") - parser.add_argument("--package-version", default="1.1.4") + parser.add_argument("--package-version", default="1.1.5") parser.add_argument("--project-version", default="1.0") parser.add_argument("--no-dependency", action="store_false", dest="set_dependency") parsed = parser.parse_args() diff --git a/core/setup.py b/core/setup.py index 03c55fa23f1..728f4eb2e7c 100644 --- a/core/setup.py +++ b/core/setup.py @@ -25,7 +25,7 @@ package_name = "dbt-core" -package_version = "1.1.4" +package_version = "1.1.5" description = """With dbt, data analysts and engineers can build analytics \ the way engineers build applications.""" diff --git a/docker/Dockerfile b/docker/Dockerfile index 92d682d177e..f42d8a256ec 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -14,8 +14,8 @@ FROM --platform=$build_for python:3.10.3-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.1.4 -ARG dbt_postgres_ref=dbt-core@v1.1.4 +ARG dbt_core_ref=dbt-core@v1.1.5 +ARG dbt_postgres_ref=dbt-core@v1.1.5 ARG dbt_redshift_ref=dbt-redshift@v1.1.0 ARG dbt_bigquery_ref=dbt-bigquery@v1.1.0 ARG dbt_snowflake_ref=dbt-snowflake@v1.1.0 diff --git a/plugins/postgres/dbt/adapters/postgres/__version__.py b/plugins/postgres/dbt/adapters/postgres/__version__.py index 2e25edef03f..cc1ab034b23 100644 --- a/plugins/postgres/dbt/adapters/postgres/__version__.py +++ b/plugins/postgres/dbt/adapters/postgres/__version__.py @@ -1 +1 @@ -version = "1.1.4" +version = "1.1.5" diff --git a/plugins/postgres/setup.py b/plugins/postgres/setup.py index 905d49245e5..c62f20705b1 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.1.4" +package_version = "1.1.5" description = """The postgres adpter 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 2e25edef03f..cc1ab034b23 100644 --- a/tests/adapter/dbt/tests/adapter/__version__.py +++ b/tests/adapter/dbt/tests/adapter/__version__.py @@ -1 +1 @@ -version = "1.1.4" +version = "1.1.5" diff --git a/tests/adapter/setup.py b/tests/adapter/setup.py index 1005a54159f..273512ac4b2 100644 --- a/tests/adapter/setup.py +++ b/tests/adapter/setup.py @@ -20,7 +20,7 @@ package_name = "dbt-tests-adapter" -package_version = "1.1.4" +package_version = "1.1.5" description = """The dbt adapter tests for adapter plugins""" this_directory = os.path.abspath(os.path.dirname(__file__))