Skip to content

Latest commit

 

History

History
58 lines (40 loc) · 3.89 KB

CHANGELOG.md

File metadata and controls

58 lines (40 loc) · 3.89 KB

dbt-bigquery 1.0.0 (Release TBD)

dbt-bigquery 1.0.0rc2 (November 24, 2021)

Features

  • Add optional scopes profile configuration argument to reduce the BigQuery OAuth scopes down to the minimal set needed. (#23, #63)

Fixes

  • Don't apply require_partition_filter to temporary tables, thereby fixing insert_overwrite strategy when partition filter is required (#64), (#65)

Under the hood

  • Adding execution_project to target object (#66)

Contributors

dbt-bigquery 1.0.0rc1 (November 10, 2021)

Fixes

  • Fix problem with bytes processed return None value when the service account used to connect DBT in bigquery had a row policy access. (#47, #48)
  • When on_schema_change is set, pass common columns as dest_columns in incremental merge macros (#4144)

Under the hood

  • Capping google-api-core to version 1.31.3 due to protobuf dependency conflict (#53)
  • Bump google-cloud-core and google-api-core upper bounds to <3, thereby removing <1.31.3 limit on the latter. Remove explicit dependency on six (#57)
  • Remove official support for python 3.6, which is reaching end of life on December 23, 2021 (dbt-core#4134, #59)
  • Add support for structured logging #55

Contributors

dbt-bigquery 1.0.0b2 (October 25, 2021)

Features

  • Rework _dbt_max_partition logic in dynamic insert_overwrite incremental strategy. Make the default logic compatible with on_schema_change, and make it possible to disable or reimplement that logic by defining a custom macro declare_dbt_max_partition (#17, #39, #41)

Fixes

  • Reimplement the unique test to handle column expressions and naming overlaps (#33, #35, #10)
  • Avoid error in dbt deps + dbt clean if default project is missing (#27, #40)

Under the hood

  • Replace sample_profiles.yml with profile_template.yml, for use with new dbt init (#43)

Contributors

dbt-bigquery 1.0.0b1 (October 11, 2021)

Under the hood

  • Initial adapter split out