diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 70967f03c..330672139 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.4.1 +current_version = 1.4.2 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.4.2.md b/.changes/1.4.2.md new file mode 100644 index 000000000..2edf64590 --- /dev/null +++ b/.changes/1.4.2.md @@ -0,0 +1,16 @@ +## dbt-bigquery 1.4.2 - March 10, 2023 + +### Features + +- add dataproc serverless config to profile ([#530](https://github.com/dbt-labs/dbt-bigquery/issues/530)) + +### Fixes + +- Make BQ access_grant updates thread safe ([#266](https://github.com/dbt-labs/dbt-bigquery/issues/266)) +- Fix time ingestion partitioning option regression when combined using `require_partition_filter` option on incremental run ([#483](https://github.com/dbt-labs/dbt-bigquery/issues/483)) +- Fix for Python incremental model regression ([#581](https://github.com/dbt-labs/dbt-bigquery/issues/581)) + +### Contributors +- [@Kayrnt](https://github.com/Kayrnt) ([#483](https://github.com/dbt-labs/dbt-bigquery/issues/483)) +- [@nssalian](https://github.com/nssalian) ([#581](https://github.com/dbt-labs/dbt-bigquery/issues/581)) +- [@torkjel](https://github.com/torkjel) ([#530](https://github.com/dbt-labs/dbt-bigquery/issues/530)) diff --git a/.changes/unreleased/Features-20230303-132509.yaml b/.changes/unreleased/Features-20230303-132509.yaml deleted file mode 100644 index 3a0ba8403..000000000 --- a/.changes/unreleased/Features-20230303-132509.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Features -body: add dataproc serverless config to profile -time: 2023-03-03T13:25:09.02695-08:00 -custom: - Author: colin-rogers-dbt torkjel - Issue: "530" diff --git a/.changes/unreleased/Fixes-20221213-102005.yaml b/.changes/unreleased/Fixes-20221213-102005.yaml deleted file mode 100644 index 5e4c486d8..000000000 --- a/.changes/unreleased/Fixes-20221213-102005.yaml +++ /dev/null @@ -1,7 +0,0 @@ -kind: Fixes -body: Make BQ access_grant updates thread safe -time: 2022-12-13T10:20:05.714134-08:00 -custom: - Author: colin-rogers-dbt - Issue: "266" - PR: "404" diff --git a/.changes/unreleased/Fixes-20230202-010332.yaml b/.changes/unreleased/Fixes-20230202-010332.yaml deleted file mode 100644 index f6062e7ea..000000000 --- a/.changes/unreleased/Fixes-20230202-010332.yaml +++ /dev/null @@ -1,8 +0,0 @@ -kind: Fixes -body: Fix time ingestion partitioning option regression when combined using `require_partition_filter` - option on incremental run -time: 2023-02-02T01:03:32.577336+01:00 -custom: - Author: Kayrnt - Issue: "483" - PR: "485" diff --git a/.changes/unreleased/Fixes-20230309-181313.yaml b/.changes/unreleased/Fixes-20230309-181313.yaml deleted file mode 100644 index 8681f5eaf..000000000 --- a/.changes/unreleased/Fixes-20230309-181313.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Fixes -body: Fix for Python incremental model regression -time: 2023-03-09T18:13:13.512904-08:00 -custom: - Author: nssalian - Issue: "581" diff --git a/CHANGELOG.md b/CHANGELOG.md index e82f75254..a8dc9e929 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,13 +5,29 @@ - "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.4.1 - February 14, 2023 +## dbt-bigquery 1.4.2 - March 10, 2023 + +### Features + +- add dataproc serverless config to profile ([#530](https://github.com/dbt-labs/dbt-bigquery/issues/530)) ### Fixes -- Pin dataproc serverless spark runtime to `1.1` ([#531](https://github.com/dbt-labs/dbt-bigquery/issues/531)) +- Make BQ access_grant updates thread safe ([#266](https://github.com/dbt-labs/dbt-bigquery/issues/266)) +- Fix time ingestion partitioning option regression when combined using `require_partition_filter` option on incremental run ([#483](https://github.com/dbt-labs/dbt-bigquery/issues/483)) +- Fix for Python incremental model regression ([#581](https://github.com/dbt-labs/dbt-bigquery/issues/581)) + +### Contributors +- [@Kayrnt](https://github.com/Kayrnt) ([#483](https://github.com/dbt-labs/dbt-bigquery/issues/483)) +- [@nssalian](https://github.com/nssalian) ([#581](https://github.com/dbt-labs/dbt-bigquery/issues/581)) +- [@torkjel](https://github.com/torkjel) ([#530](https://github.com/dbt-labs/dbt-bigquery/issues/530)) + + +## dbt-bigquery 1.4.1 - February 14, 2023 +### Fixes +- Pin dataproc serverless spark runtime to `1.1` ([#531](https://github.com/dbt-labs/dbt-bigquery/issues/531)) ## dbt-bigquery 1.4.0 - January 25, 2023 ### Features diff --git a/dbt/adapters/bigquery/__version__.py b/dbt/adapters/bigquery/__version__.py index 6abaa2043..841aad2c6 100644 --- a/dbt/adapters/bigquery/__version__.py +++ b/dbt/adapters/bigquery/__version__.py @@ -1 +1 @@ -version = "1.4.1" +version = "1.4.2" diff --git a/setup.py b/setup.py index c23bc7c13..8fb4d43bc 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.4.1" +package_version = "1.4.2" dbt_core_version = _dbt_core_version(_dbt_bigquery_version()) description = """The BigQuery adapter plugin for dbt"""