From 54b58f74d8d21b4d7c35dd17499a2bba12acbb55 Mon Sep 17 00:00:00 2001 From: Github Build Bot Date: Thu, 28 Mar 2024 03:22:03 +0000 Subject: [PATCH] Bumping version to 1.6.12 and generate changelog --- .bumpversion.cfg | 2 +- .changes/1.6.12.md | 6 ++++++ .changes/unreleased/Fixes-20240322-113720.yaml | 6 ------ .changes/unreleased/Fixes-20240327-210249.yaml | 7 ------- CHANGELOG.md | 11 +++++++++-- dbt/adapters/bigquery/__version__.py | 2 +- setup.py | 2 +- 7 files changed, 18 insertions(+), 18 deletions(-) create mode 100644 .changes/1.6.12.md delete mode 100644 .changes/unreleased/Fixes-20240322-113720.yaml delete mode 100644 .changes/unreleased/Fixes-20240327-210249.yaml diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 08c4629e9..2cf849421 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.6.11 +current_version = 1.6.12 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.6.12.md b/.changes/1.6.12.md new file mode 100644 index 000000000..b3e37f85e --- /dev/null +++ b/.changes/1.6.12.md @@ -0,0 +1,6 @@ +## dbt-bigquery 1.6.12 - March 28, 2024 + +### Fixes + +- remove `keyfile` from `_connection_keys` ([#1146](https://github.com/dbt-labs/dbt-bigquery/issues/1146)) +- Add `pandas` extra for `google-cloud-bigquery` to pick up missing `pyarrow` dependency ([#1152](https://github.com/dbt-labs/dbt-bigquery/issues/1152)) diff --git a/.changes/unreleased/Fixes-20240322-113720.yaml b/.changes/unreleased/Fixes-20240322-113720.yaml deleted file mode 100644 index 9279c6ecd..000000000 --- a/.changes/unreleased/Fixes-20240322-113720.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Fixes -body: remove `keyfile` from `_connection_keys` -time: 2024-03-22T11:37:20.989189-05:00 -custom: - Author: McKnight-42 - Issue: "1146" diff --git a/.changes/unreleased/Fixes-20240327-210249.yaml b/.changes/unreleased/Fixes-20240327-210249.yaml deleted file mode 100644 index 04a5c5e38..000000000 --- a/.changes/unreleased/Fixes-20240327-210249.yaml +++ /dev/null @@ -1,7 +0,0 @@ -kind: Fixes -body: Add `pandas` extra for `google-cloud-bigquery` to pick up missing `pyarrow` - dependency -time: 2024-03-27T21:02:49.619691-04:00 -custom: - Author: mikealfare - Issue: "1152" diff --git a/CHANGELOG.md b/CHANGELOG.md index 15327d003..39688d694 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,13 +5,20 @@ - "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-bigquery/blob/main/CONTRIBUTING.md#adding-changelog-entry) -## dbt-bigquery 1.6.11 - February 22, 2024 +## dbt-bigquery 1.6.12 - March 28, 2024 ### Fixes -- Remove custom query job async timeout logic as it has been fixed in bigquery-python ([#1081](https://github.com/dbt-labs/dbt-bigquery/issues/1081)) +- remove `keyfile` from `_connection_keys` ([#1146](https://github.com/dbt-labs/dbt-bigquery/issues/1146)) +- Add `pandas` extra for `google-cloud-bigquery` to pick up missing `pyarrow` dependency ([#1152](https://github.com/dbt-labs/dbt-bigquery/issues/1152)) + + +## dbt-bigquery 1.6.11 - February 22, 2024 + +### Fixes +- Remove custom query job async timeout logic as it has been fixed in bigquery-python ([#1081](https://github.com/dbt-labs/dbt-bigquery/issues/1081)) ## dbt-bigquery 1.6.10 - February 16, 2024 diff --git a/dbt/adapters/bigquery/__version__.py b/dbt/adapters/bigquery/__version__.py index 0f67fff62..72a815d0f 100644 --- a/dbt/adapters/bigquery/__version__.py +++ b/dbt/adapters/bigquery/__version__.py @@ -1 +1 @@ -version = "1.6.11" +version = "1.6.12" diff --git a/setup.py b/setup.py index ea518d5aa..1938a3ce2 100644 --- a/setup.py +++ b/setup.py @@ -58,7 +58,7 @@ def _dbt_core_version(plugin_version: str) -> str: package_name = "dbt-bigquery" -package_version = "1.6.11" +package_version = "1.6.12" dbt_core_version = _dbt_core_version(_dbt_bigquery_version()) description = """The BigQuery adapter plugin for dbt"""