diff --git a/.bumpversion.cfg b/.bumpversion.cfg index c33a2c013..73edb0674 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.8.0b1 +current_version = 1.8.0b2 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.8.0-b2.md b/.changes/1.8.0-b2.md new file mode 100644 index 000000000..64aa32c7a --- /dev/null +++ b/.changes/1.8.0-b2.md @@ -0,0 +1,23 @@ +## dbt-bigquery 1.8.0-b2 - April 03, 2024 + +### Features + +- Add new workflow for internal patch releases ([#38](https://github.com/dbt-labs/dbt-bigquery/issues/38)) + +### 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)) + +### Dependencies + +- hard pin ddtrace to 2.3.0 ([#1141](https://github.com/dbt-labs/dbt-bigquery/pull/1141)) +- Add `dbt-core` as a dependency to preserve backwards compatibility for installation ([#1168](https://github.com/dbt-labs/dbt-bigquery/pull/1168)) + +### Security + +- Pin `black>=24.3` in `dev-requirements.txt` ([#1151](https://github.com/dbt-labs/dbt-bigquery/pull/1151)) diff --git a/.changes/unreleased/Dependencies-20240319-102258.yaml b/.changes/1.8.0/Dependencies-20240319-102258.yaml similarity index 100% rename from .changes/unreleased/Dependencies-20240319-102258.yaml rename to .changes/1.8.0/Dependencies-20240319-102258.yaml diff --git a/.changes/unreleased/Dependencies-20240403-134956.yaml b/.changes/1.8.0/Dependencies-20240403-134956.yaml similarity index 100% rename from .changes/unreleased/Dependencies-20240403-134956.yaml rename to .changes/1.8.0/Dependencies-20240403-134956.yaml diff --git a/.changes/unreleased/Features-20240318-032256.yaml b/.changes/1.8.0/Features-20240318-032256.yaml similarity index 100% rename from .changes/unreleased/Features-20240318-032256.yaml rename to .changes/1.8.0/Features-20240318-032256.yaml diff --git a/.changes/unreleased/Fixes-20240322-113720.yaml b/.changes/1.8.0/Fixes-20240322-113720.yaml similarity index 100% rename from .changes/unreleased/Fixes-20240322-113720.yaml rename to .changes/1.8.0/Fixes-20240322-113720.yaml diff --git a/.changes/unreleased/Fixes-20240327-210249.yaml b/.changes/1.8.0/Fixes-20240327-210249.yaml similarity index 100% rename from .changes/unreleased/Fixes-20240327-210249.yaml rename to .changes/1.8.0/Fixes-20240327-210249.yaml diff --git a/.changes/unreleased/Security-20240327-193211.yaml b/.changes/1.8.0/Security-20240327-193211.yaml similarity index 100% rename from .changes/unreleased/Security-20240327-193211.yaml rename to .changes/1.8.0/Security-20240327-193211.yaml diff --git a/.changes/unreleased/Under the Hood-20240227-004659.yaml b/.changes/1.8.0/Under the Hood-20240227-004659.yaml similarity index 100% rename from .changes/unreleased/Under the Hood-20240227-004659.yaml rename to .changes/1.8.0/Under the Hood-20240227-004659.yaml diff --git a/CHANGELOG.md b/CHANGELOG.md index 6012f18df..62c0bc82a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,32 @@ - "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.8.0-b2 - April 03, 2024 + +### Features + +- Add new workflow for internal patch releases ([#38](https://github.com/dbt-labs/dbt-bigquery/issues/38)) + +### 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)) + +### Dependencies + +- hard pin ddtrace to 2.3.0 ([#1141](https://github.com/dbt-labs/dbt-bigquery/pull/1141)) +- Add `dbt-core` as a dependency to preserve backwards compatibility for installation ([#1168](https://github.com/dbt-labs/dbt-bigquery/pull/1168)) + +### Security + +- Pin `black>=24.3` in `dev-requirements.txt` ([#1151](https://github.com/dbt-labs/dbt-bigquery/pull/1151)) + + + ## dbt-bigquery 1.8.0-b1 - March 01, 2024 ### Features @@ -63,7 +89,6 @@ - [@matt-winkler](https://github.com/matt-winkler) ([#972](https://github.com/dbt-labs/dbt-bigquery/issues/972)) - [@tnk-ysk](https://github.com/tnk-ysk) ([#896](https://github.com/dbt-labs/dbt-bigquery/issues/896), [#792](https://github.com/dbt-labs/dbt-bigquery/issues/792)) - ## 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 6496f3e22..7d16c28f0 100644 --- a/dbt/adapters/bigquery/__version__.py +++ b/dbt/adapters/bigquery/__version__.py @@ -1 +1 @@ -version = "1.8.0b1" +version = "1.8.0b2" diff --git a/setup.py b/setup.py index 1308e2dfd..c972e6e5a 100644 --- a/setup.py +++ b/setup.py @@ -36,7 +36,7 @@ def _dbt_bigquery_version() -> str: package_name = "dbt-bigquery" -package_version = "1.8.0b1" +package_version = "1.8.0b2" description = """The BigQuery adapter plugin for dbt""" setup(