Skip to content
This repository was archived by the owner on Sep 2, 2025. It is now read-only.

Commit e7008a3

Browse files
Bumping version to 1.6.0 and generate changelog
1 parent e0529a2 commit e7008a3

40 files changed

+39
-280
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.6.0rc1
2+
current_version = 1.6.0
33
parse = (?P<major>[\d]+) # major version number
44
\.(?P<minor>[\d]+) # minor version number
55
\.(?P<patch>[\d]+) # patch version number

.changes/1.6.0-a1.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

.changes/1.6.0-b1.md

Lines changed: 0 additions & 13 deletions
This file was deleted.

.changes/1.6.0-b2.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

.changes/1.6.0-b3.md

Lines changed: 0 additions & 13 deletions
This file was deleted.

.changes/1.6.0-b4.md

Lines changed: 0 additions & 14 deletions
This file was deleted.

.changes/1.6.0-rc1.md renamed to .changes/1.6.0.md

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,30 @@
1-
## dbt-bigquery 1.6.0-rc1 - July 17, 2023
1+
## dbt-bigquery 1.6.0 - July 31, 2023
2+
3+
### Breaking Changes
4+
5+
- Drop support for python 3.7 ([#dbt-labs/dbt-core/7082](https://github.com/dbt-labs/dbt-bigquery/issues/dbt-labs/dbt-core/7082))
26

37
### Features
48

59
- Move the BQ Job link after the job submission instead of job done ([#696](https://github.com/dbt-labs/dbt-bigquery/issues/696))
10+
- Support model contracts + constraints on nested columns ([#673](https://github.com/dbt-labs/dbt-bigquery/issues/673))
11+
- Standardize the _connection_keys and debug_query for `dbt debug`. ([#PR754](https://github.com/dbt-labs/dbt-bigquery/issues/PR754))
612
- add dbt-bigquery portion of dbt_clone fucntionality ([#7256](https://github.com/dbt-labs/dbt-bigquery/issues/7256))
713
- Add validate_sql to BigQuery adapter and dry_run to BigQueryConnectionManager ([#805](https://github.com/dbt-labs/dbt-bigquery/issues/805))
814

915
### Fixes
1016

17+
- Support all types of data_type using time ingestion partitioning as previously `date` was failing ([#486](https://github.com/dbt-labs/dbt-bigquery/issues/486))
1118
- add negative part_number arg for split part macro ([#615](https://github.com/dbt-labs/dbt-bigquery/issues/615))
1219
- Enable single-line `private_key` for BigQuery Service Account JSON Authentication ([#7164](https://github.com/dbt-labs/dbt-bigquery/issues/7164))
1320
- Use tmp table in static insert overwrite to avoid computing the SQL twice ([#427](https://github.com/dbt-labs/dbt-bigquery/issues/427), [#556](https://github.com/dbt-labs/dbt-bigquery/issues/556))
21+
- Fix issue of sporadic failure to apply grants during high transaction volumes ([#614](https://github.com/dbt-labs/dbt-bigquery/issues/614))
22+
- Fix UDF usage with time ingestion ([#684](https://github.com/dbt-labs/dbt-bigquery/issues/684))
23+
- Fixes adding policy tags when a struct is defined in the yml ([#687](https://github.com/dbt-labs/dbt-bigquery/issues/687))
24+
- Update signature for execute method ([#](https://github.com/dbt-labs/dbt-bigquery/issues/), [#](https://github.com/dbt-labs/dbt-bigquery/issues/))
25+
- test foreign key constraint rendering ([#7512](https://github.com/dbt-labs/dbt-bigquery/issues/7512))
26+
- test model constraints with sql headers ([#7714](https://github.com/dbt-labs/dbt-bigquery/issues/7714))
27+
- Pass python model timeout to polling operation so model execution times out as expected. ([#577](https://github.com/dbt-labs/dbt-bigquery/issues/577))
1428
- remove call to dataset update if dataset has not changed ([#770](https://github.com/dbt-labs/dbt-bigquery/issues/770))
1529
- Remove dependent_projects argument from PartialProject call in unit test ([#7955](https://github.com/dbt-labs/dbt-bigquery/issues/7955))
1630
- Contracts: Handle struct column specified both at root and nested levels + arrays of structs ([#781](https://github.com/dbt-labs/dbt-bigquery/issues/781), [#782](https://github.com/dbt-labs/dbt-bigquery/issues/782))
@@ -19,6 +33,7 @@
1933

2034
- Update types-requests requirement from ~=2.28 to ~=2.31 ([#737](https://github.com/dbt-labs/dbt-bigquery/pull/737))
2135
- Update tox requirement from ~=4.4 to ~=4.6 ([#757](https://github.com/dbt-labs/dbt-bigquery/pull/757))
36+
- Rm explicit agate pin, in favor of transitive dependency from dbt-core ([#777](https://github.com/dbt-labs/dbt-bigquery/pull/777))
2237
- Bump mypy from 1.2.0 to 1.4.0 ([#780](https://github.com/dbt-labs/dbt-bigquery/pull/780))
2338
- Update types-protobuf requirement from ~=4.22 to ~=4.23 ([#706](https://github.com/dbt-labs/dbt-bigquery/pull/706))
2439
- Update pre-commit requirement from ~=3.2 to ~=3.3 ([#787](https://github.com/dbt-labs/dbt-bigquery/pull/787))
@@ -28,7 +43,8 @@
2843
- Update pip-tools requirement from ~=6.13 to ~=6.14 ([#809](https://github.com/dbt-labs/dbt-bigquery/pull/809))
2944

3045
### Contributors
31-
- [@Kayrnt](https://github.com/Kayrnt) ([#696](https://github.com/dbt-labs/dbt-bigquery/issues/696), [#427](https://github.com/dbt-labs/dbt-bigquery/issues/427), [#556](https://github.com/dbt-labs/dbt-bigquery/issues/556))
46+
- [@Kayrnt](https://github.com/Kayrnt) ([#696](https://github.com/dbt-labs/dbt-bigquery/issues/696), [#486](https://github.com/dbt-labs/dbt-bigquery/issues/486), [#427](https://github.com/dbt-labs/dbt-bigquery/issues/427), [#556](https://github.com/dbt-labs/dbt-bigquery/issues/556), [#684](https://github.com/dbt-labs/dbt-bigquery/issues/684))
3247
- [@McKnight-42,](https://github.com/McKnight-42,) ([#7256](https://github.com/dbt-labs/dbt-bigquery/issues/7256))
3348
- [@dave-connors-3](https://github.com/dave-connors-3) ([#615](https://github.com/dbt-labs/dbt-bigquery/issues/615))
49+
- [@dgreen161](https://github.com/dgreen161) ([#687](https://github.com/dbt-labs/dbt-bigquery/issues/687))
3450
- [@tlento](https://github.com/tlento) ([#805](https://github.com/dbt-labs/dbt-bigquery/issues/805))

.changes/1.6.0/Breaking Changes-20230530-174051.yaml

Lines changed: 0 additions & 6 deletions
This file was deleted.

.changes/1.6.0/Dependencies-20230606-003859.yaml

Lines changed: 0 additions & 6 deletions
This file was deleted.

.changes/1.6.0/Dependencies-20230606-005912.yaml

Lines changed: 0 additions & 6 deletions
This file was deleted.

0 commit comments

Comments
 (0)