diff --git a/.bumpversion.cfg b/.bumpversion.cfg index ab5c6cddf..8cbc7c837 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.7.2 +current_version = 1.7.3 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.7.3.md b/.changes/1.7.3.md new file mode 100644 index 000000000..05b6910ba --- /dev/null +++ b/.changes/1.7.3.md @@ -0,0 +1,11 @@ +## dbt-bigquery 1.7.3 - January 22, 2024 + +### Features + +- Add support for checking table-last-modified by metadata ([#938](https://github.com/dbt-labs/dbt-bigquery/issues/938)) +- Support limiting get_catalog by object name ([#950](https://github.com/dbt-labs/dbt-bigquery/issues/950)) + +### Fixes + +- replace deterministic batch_id with uuid ([#1006](https://github.com/dbt-labs/dbt-bigquery/issues/1006)) +- remove json patch to leverage bigquery-python improvement ([#1055](https://github.com/dbt-labs/dbt-bigquery/issues/1055)) diff --git a/.changes/unreleased/Features-20231218-155409.yaml b/.changes/unreleased/Features-20231218-155409.yaml deleted file mode 100644 index bc965b06f..000000000 --- a/.changes/unreleased/Features-20231218-155409.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Features -body: Add support for checking table-last-modified by metadata -time: 2023-12-18T15:54:09.69635-05:00 -custom: - Author: mikealfare - Issue: "938" diff --git a/.changes/unreleased/Features-20231219-201203.yaml b/.changes/unreleased/Features-20231219-201203.yaml deleted file mode 100644 index eee3f1026..000000000 --- a/.changes/unreleased/Features-20231219-201203.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Features -body: Support limiting get_catalog by object name -time: 2023-12-19T20:12:03.990725-05:00 -custom: - Author: mikealfare - Issue: "950" diff --git a/.changes/unreleased/Fixes-20231111-150959.yaml b/.changes/unreleased/Fixes-20231111-150959.yaml deleted file mode 100644 index 3d9f245a6..000000000 --- a/.changes/unreleased/Fixes-20231111-150959.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Fixes -body: replace deterministic batch_id with uuid -time: 2023-11-11T15:09:59.243797-08:00 -custom: - Author: colin-rogers-dbt - Issue: "1006" diff --git a/.changes/unreleased/Fixes-20231219-153446.yaml b/.changes/unreleased/Fixes-20231219-153446.yaml deleted file mode 100644 index 44a858eb8..000000000 --- a/.changes/unreleased/Fixes-20231219-153446.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Fixes -body: remove json patch to leverage bigquery-python improvement -time: 2023-12-19T15:34:46.843931-08:00 -custom: - Author: colin-rogers-dbt - Issue: "1055" diff --git a/CHANGELOG.md b/CHANGELOG.md index f2b66354f..94d38878d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +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.7.3 - January 22, 2024 + +### Features + +- Add support for checking table-last-modified by metadata ([#938](https://github.com/dbt-labs/dbt-bigquery/issues/938)) +- Support limiting get_catalog by object name ([#950](https://github.com/dbt-labs/dbt-bigquery/issues/950)) + +### Fixes + +- replace deterministic batch_id with uuid ([#1006](https://github.com/dbt-labs/dbt-bigquery/issues/1006)) +- remove json patch to leverage bigquery-python improvement ([#1055](https://github.com/dbt-labs/dbt-bigquery/issues/1055)) + + + ## dbt-bigquery 1.7.2 - November 09, 2023 ### Fixes @@ -15,8 +29,6 @@ - Upgrade spark-bigquery Java deps for serverless to 2.13-0.34.0 ([#1006](https://github.com/dbt-labs/dbt-bigquery/issues/1006)) - - ## dbt-bigquery 1.7.1 - November 07, 2023 ### Fixes diff --git a/dbt/adapters/bigquery/__version__.py b/dbt/adapters/bigquery/__version__.py index 2196826f8..a26c30165 100644 --- a/dbt/adapters/bigquery/__version__.py +++ b/dbt/adapters/bigquery/__version__.py @@ -1 +1 @@ -version = "1.7.2" +version = "1.7.3" diff --git a/setup.py b/setup.py index 0ddbad304..336dcab1a 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.2" +package_version = "1.7.3" dbt_core_version = _dbt_core_version(_dbt_bigquery_version()) description = """The BigQuery adapter plugin for dbt"""