diff --git a/.bumpversion.cfg b/.bumpversion.cfg index c7237393b..ed6c2449e 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.7.6 +current_version = 1.7.7 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.7.7.md b/.changes/1.7.7.md new file mode 100644 index 000000000..b6d9b74d5 --- /dev/null +++ b/.changes/1.7.7.md @@ -0,0 +1,10 @@ +## dbt-bigquery 1.7.7 - 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)) + +### Under the Hood + +- Add unit test for transaction semantics. ([#1123](https://github.com/dbt-labs/dbt-bigquery/issues/1123)) 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/.changes/unreleased/Under the Hood-20240227-004659.yaml b/.changes/unreleased/Under the Hood-20240227-004659.yaml deleted file mode 100644 index 6ef259019..000000000 --- a/.changes/unreleased/Under the Hood-20240227-004659.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Under the Hood -body: Add unit test for transaction semantics. -time: 2024-02-27T00:46:59.188231-08:00 -custom: - Author: versusfacit - Issue: "1123" diff --git a/CHANGELOG.md b/CHANGELOG.md index 0bc0a1442..4e986b5ca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,13 +5,24 @@ - "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.7.6 - February 22, 2024 +## dbt-bigquery 1.7.7 - 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)) + +### Under the Hood + +- Add unit test for transaction semantics. ([#1123](https://github.com/dbt-labs/dbt-bigquery/issues/1123)) + +## dbt-bigquery 1.7.6 - 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.7.5 - February 16, 2024 diff --git a/dbt/adapters/bigquery/__version__.py b/dbt/adapters/bigquery/__version__.py index 72f4cc284..c3fcf0565 100644 --- a/dbt/adapters/bigquery/__version__.py +++ b/dbt/adapters/bigquery/__version__.py @@ -1 +1 @@ -version = "1.7.6" +version = "1.7.7" diff --git a/setup.py b/setup.py index 5fa497e69..33aeff551 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.7.6" +package_version = "1.7.7" dbt_core_version = _dbt_core_version(_dbt_bigquery_version()) description = """The BigQuery adapter plugin for dbt"""