From a5e61e0e06e71de064cf2ebe33c84a48442fec7f Mon Sep 17 00:00:00 2001 From: Github Build Bot Date: Fri, 10 Jan 2025 21:16:12 +0000 Subject: [PATCH] Bumping version to 1.9.1 and generate changelog --- .bumpversion.cfg | 2 +- .changes/1.9.1.md | 13 +++++++++++++ .../unreleased/Features-20241202-223835.yaml | 6 ------ .changes/unreleased/Fixes-20241120-163101.yaml | 7 ------- .changes/unreleased/Fixes-20241211-144752.yaml | 6 ------ CHANGELOG.md | 16 +++++++++++++++- dbt/adapters/bigquery/__version__.py | 2 +- 7 files changed, 30 insertions(+), 22 deletions(-) create mode 100644 .changes/1.9.1.md delete mode 100644 .changes/unreleased/Features-20241202-223835.yaml delete mode 100644 .changes/unreleased/Fixes-20241120-163101.yaml delete mode 100644 .changes/unreleased/Fixes-20241211-144752.yaml diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 06e2e65a4..7027d0382 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.9.0 +current_version = 1.9.1 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.9.1.md b/.changes/1.9.1.md new file mode 100644 index 000000000..780e2eb92 --- /dev/null +++ b/.changes/1.9.1.md @@ -0,0 +1,13 @@ +## dbt-bigquery 1.9.1 - January 10, 2025 + +### Features + +- Allow copy_partitions in microbatch ([#1414](https://github.com/dbt-labs/dbt-bigquery/issues/1414)) + +### Fixes + +- Fix issue where dbt-bigquery was not retrying in certain retryable scenarios, e.g. 503's ([#682](https://github.com/dbt-labs/dbt-bigquery/issues/682)) +- Fix retry scenarios so that dbt always retries when BigQuery recommends a retry ([#263](https://github.com/dbt-labs/dbt-bigquery/issues/263)) + +### Contributors +- [@borjavb](https://github.com/borjavb) ([#1414](https://github.com/dbt-labs/dbt-bigquery/issues/1414)) diff --git a/.changes/unreleased/Features-20241202-223835.yaml b/.changes/unreleased/Features-20241202-223835.yaml deleted file mode 100644 index ab59abd99..000000000 --- a/.changes/unreleased/Features-20241202-223835.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Features -body: Allow copy_partitions in microbatch -time: 2024-12-02T22:38:35.479052Z -custom: - Author: borjavb - Issue: "1414" diff --git a/.changes/unreleased/Fixes-20241120-163101.yaml b/.changes/unreleased/Fixes-20241120-163101.yaml deleted file mode 100644 index ba1f4e937..000000000 --- a/.changes/unreleased/Fixes-20241120-163101.yaml +++ /dev/null @@ -1,7 +0,0 @@ -kind: Fixes -body: Fix issue where dbt-bigquery was not retrying in certain retryable scenarios, - e.g. 503's -time: 2024-11-20T16:31:01.60689-05:00 -custom: - Author: mikealfare - Issue: "682" diff --git a/.changes/unreleased/Fixes-20241211-144752.yaml b/.changes/unreleased/Fixes-20241211-144752.yaml deleted file mode 100644 index e666d5c31..000000000 --- a/.changes/unreleased/Fixes-20241211-144752.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Fixes -body: Fix retry scenarios so that dbt always retries when BigQuery recommends a retry -time: 2024-12-11T14:47:52.36905-05:00 -custom: - Author: mikealfare - Issue: "263" diff --git a/CHANGELOG.md b/CHANGELOG.md index 9488579fe..22bb3ea4d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,21 @@ - "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.9.1 - January 10, 2025 + +### Features + +- Allow copy_partitions in microbatch ([#1414](https://github.com/dbt-labs/dbt-bigquery/issues/1414)) + +### Fixes + +- Fix issue where dbt-bigquery was not retrying in certain retryable scenarios, e.g. 503's ([#682](https://github.com/dbt-labs/dbt-bigquery/issues/682)) +- Fix retry scenarios so that dbt always retries when BigQuery recommends a retry ([#263](https://github.com/dbt-labs/dbt-bigquery/issues/263)) + +### Contributors +- [@borjavb](https://github.com/borjavb) ([#1414](https://github.com/dbt-labs/dbt-bigquery/issues/1414)) + + ## dbt-bigquery 1.9.0 - December 09, 2024 ### Breaking Changes @@ -67,7 +82,6 @@ - [@salimmoulouel](https://github.com/salimmoulouel) ([#1119](https://github.com/dbt-labs/dbt-bigquery/issues/1119)) - [@vinit2107](https://github.com/vinit2107) ([#1036](https://github.com/dbt-labs/dbt-bigquery/issues/1036)) - ## Previous Releases For information on prior major and minor releases, see their changelogs: - [1.6](https://github.com/dbt-labs/dbt-bigquery/blob/1.6.latest/CHANGELOG.md) diff --git a/dbt/adapters/bigquery/__version__.py b/dbt/adapters/bigquery/__version__.py index 7aba64097..702279763 100644 --- a/dbt/adapters/bigquery/__version__.py +++ b/dbt/adapters/bigquery/__version__.py @@ -1 +1 @@ -version = "1.9.0" +version = "1.9.1"