File tree 15 files changed +36
-14
lines changed
15 files changed +36
-14
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,28 @@ All notable changes to this project will be documented in this file.
4
4
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
5
5
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
6
6
7
+ ## [ 8.0.0] ( https://github.com/terraform-google-modules/terraform-google-bigquery/compare/v7.0.0...v8.0.0 ) (2023-12-01)
8
+
9
+
10
+ ### ⚠ BREAKING CHANGES
11
+
12
+ * add support to max_staleness field ([ #278 ] ( https://github.com/terraform-google-modules/terraform-google-bigquery/issues/278 ) )
13
+
14
+ ### Features
15
+
16
+ * add support to max_staleness field ([ #278 ] ( https://github.com/terraform-google-modules/terraform-google-bigquery/issues/278 ) ) ([ 4c51616] ( https://github.com/terraform-google-modules/terraform-google-bigquery/commit/4c51616f65a5994886917b1f09d4ba9d336f593b ) )
17
+ * allow fine-grained deletion protection config at the table-level ([ #287 ] ( https://github.com/terraform-google-modules/terraform-google-bigquery/issues/287 ) ) ([ 7157c32] ( https://github.com/terraform-google-modules/terraform-google-bigquery/commit/7157c323b664d910ddef26d87c0efa5f7209b174 ) )
18
+ * data_warehouse Add GenAI capabilities ([ #272 ] ( https://github.com/terraform-google-modules/terraform-google-bigquery/issues/272 ) ) ([ f88f4b5] ( https://github.com/terraform-google-modules/terraform-google-bigquery/commit/f88f4b53ea5ed8416ed01e7285fa6018ddb8bd0b ) )
19
+ * expanded integration testing ([ #288 ] ( https://github.com/terraform-google-modules/terraform-google-bigquery/issues/288 ) ) ([ 9dcdd07] ( https://github.com/terraform-google-modules/terraform-google-bigquery/commit/9dcdd07f1e2a2b1cd4011fdf039fadca01bc32f0 ) )
20
+
21
+
22
+ ### Bug Fixes
23
+
24
+ * adding regional constraints and simplifying workflow execution ([ #284 ] ( https://github.com/terraform-google-modules/terraform-google-bigquery/issues/284 ) ) ([ 6146404] ( https://github.com/terraform-google-modules/terraform-google-bigquery/commit/61464046e3e14b62cbb902617077fd2958167dbe ) )
25
+ * adds a null check for expiration time ([ #268 ] ( https://github.com/terraform-google-modules/terraform-google-bigquery/issues/268 ) ) ([ b7efc4d] ( https://github.com/terraform-google-modules/terraform-google-bigquery/commit/b7efc4d41ee5cc0ad4b6558dccc1b4696929525f ) )
26
+ * ** deps:** Update Terraform terraform-google-modules/project-factory/google to 14.4 ([ #277 ] ( https://github.com/terraform-google-modules/terraform-google-bigquery/issues/277 ) ) ([ 85b9d22] ( https://github.com/terraform-google-modules/terraform-google-bigquery/commit/85b9d2256c7bdfb44870b725a7c7c2a96f3297a9 ) )
27
+ * update workflow.tftpl ([ #266 ] ( https://github.com/terraform-google-modules/terraform-google-bigquery/issues/266 ) ) ([ 405972a] ( https://github.com/terraform-google-modules/terraform-google-bigquery/commit/405972a27da0c0165b93f83162e4a595ec289263 ) )
28
+
7
29
## [ 7.0.0] ( https://github.com/terraform-google-modules/terraform-google-bigquery/compare/v6.1.1...v7.0.0 ) (2023-10-10)
8
30
9
31
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ Basic usage of this module is as follows:
27
27
``` hcl
28
28
module "bigquery" {
29
29
source = "terraform-google-modules/bigquery/google"
30
- version = "~> 7 .0"
30
+ version = "~> 8 .0"
31
31
32
32
dataset_id = "foo"
33
33
dataset_name = "foo"
Original file line number Diff line number Diff line change 24
24
source :
25
25
repo : https://github.com/terraform-google-modules/terraform-google-bigquery
26
26
sourceType : git
27
- version : 7 .0.0
27
+ version : 8 .0.0
28
28
actuationTool :
29
29
flavor : Terraform
30
30
version : " >= 0.13"
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ Example:
17
17
``` hcl
18
18
module "dataset" {
19
19
source = "terraform-google-modules/bigquery/google"
20
- version = "~> 7 .0"
20
+ version = "~> 8 .0"
21
21
22
22
dataset_id = "example_dataset"
23
23
dataset_name = "example_dataset"
Original file line number Diff line number Diff line change 25
25
repo : https://github.com/terraform-google-modules/terraform-google-bigquery
26
26
sourceType : git
27
27
dir : /modules/authorization
28
- version : 7 .0.0
28
+ version : 8 .0.0
29
29
actuationTool :
30
30
flavor : Terraform
31
31
version : " >= 0.13"
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ terraform {
25
25
}
26
26
27
27
provider_meta "google" {
28
- module_name = " blueprints/terraform/terraform-google-bigquery:authorization/v7 .0.0"
28
+ module_name = " blueprints/terraform/terraform-google-bigquery:authorization/v8 .0.0"
29
29
}
30
30
31
31
}
Original file line number Diff line number Diff line change 25
25
repo : https://github.com/terraform-google-modules/terraform-google-bigquery
26
26
sourceType : git
27
27
dir : /modules/data_warehouse
28
- version : 7 .0.0
28
+ version : 8 .0.0
29
29
actuationTool :
30
30
flavor : Terraform
31
31
version : " >= 0.13"
Original file line number Diff line number Diff line change @@ -44,6 +44,6 @@ terraform {
44
44
required_version = " >= 0.13"
45
45
46
46
provider_meta "google" {
47
- module_name = " blueprints/terraform/terraform-google-bigquery:data_warehouse/v7 .0.0"
47
+ module_name = " blueprints/terraform/terraform-google-bigquery:data_warehouse/v8 .0.0"
48
48
}
49
49
}
Original file line number Diff line number Diff line change 7
7
``` hcl
8
8
module "dataset" {
9
9
source = "terraform-google-modules/bigquery/google"
10
- version = "~> 7 .0"
10
+ version = "~> 8 .0"
11
11
12
12
dataset_id = "example_dataset"
13
13
dataset_name = "example_dataset"
Original file line number Diff line number Diff line change 25
25
repo : https://github.com/terraform-google-modules/terraform-google-bigquery
26
26
sourceType : git
27
27
dir : /modules/scheduled_queries
28
- version : 7 .0.0
28
+ version : 8 .0.0
29
29
actuationTool :
30
30
flavor : Terraform
31
31
version : " >= 0.13"
Original file line number Diff line number Diff line change @@ -25,6 +25,6 @@ terraform {
25
25
}
26
26
27
27
provider_meta "google" {
28
- module_name = " blueprints/terraform/terraform-google-bigquery:scheduled_queries/v7 .0.0"
28
+ module_name = " blueprints/terraform/terraform-google-bigquery:scheduled_queries/v8 .0.0"
29
29
}
30
30
}
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ module "dataset" {
18
18
19
19
module "add_udfs" {
20
20
source = "terraform-google-modules/bigquery/google//modules/udf"
21
- version = "~> 7 .0"
21
+ version = "~> 8 .0"
22
22
23
23
dataset_id = module.dataset.bigquery_dataset.dataset_id
24
24
project_id = module.dataset.bigquery_dataset.project
Original file line number Diff line number Diff line change 25
25
repo : https://github.com/terraform-google-modules/terraform-google-bigquery
26
26
sourceType : git
27
27
dir : /modules/udf
28
- version : 7 .0.0
28
+ version : 8 .0.0
29
29
actuationTool :
30
30
flavor : Terraform
31
31
version : " >= 0.13"
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ terraform {
25
25
}
26
26
27
27
provider_meta "google" {
28
- module_name = " blueprints/terraform/terraform-google-bigquery:udf/v7 .0.0"
28
+ module_name = " blueprints/terraform/terraform-google-bigquery:udf/v8 .0.0"
29
29
}
30
30
31
31
}
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ terraform {
25
25
}
26
26
27
27
provider_meta "google" {
28
- module_name = " blueprints/terraform/terraform-google-bigquery/v7 .0.0"
28
+ module_name = " blueprints/terraform/terraform-google-bigquery/v8 .0.0"
29
29
}
30
30
31
31
}
You can’t perform that action at this time.
0 commit comments