Skip to content

Commit f416549

Browse files
chore(master): release 9.0.0 (#373)
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
1 parent 170f793 commit f416549

File tree

7 files changed

+17
-6
lines changed

7 files changed

+17
-6
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,17 @@ The format is based on
77
and this project adheres to
88
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).
99

10+
## [9.0.0](https://github.com/terraform-google-modules/terraform-google-cloud-storage/compare/v8.0.3...v9.0.0) (2024-12-13)
11+
12+
13+
### ⚠ BREAKING CHANGES
14+
15+
* remove apphub_service_uri from output of simple_bucket ([#372](https://github.com/terraform-google-modules/terraform-google-cloud-storage/issues/372))
16+
17+
### Bug Fixes
18+
19+
* remove apphub_service_uri from output of simple_bucket ([#372](https://github.com/terraform-google-modules/terraform-google-cloud-storage/issues/372)) ([7459e41](https://github.com/terraform-google-modules/terraform-google-cloud-storage/commit/7459e41091602c41c486681e148b8ca7c4dc15c0))
20+
1021
## [8.0.3](https://github.com/terraform-google-modules/terraform-google-cloud-storage/compare/v8.0.2...v8.0.3) (2024-12-01)
1122

1223

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Basic usage of this module is as follows:
2424
```hcl
2525
module "gcs_buckets" {
2626
source = "terraform-google-modules/cloud-storage/google"
27-
version = "~> 8.0"
27+
version = "~> 9.0"
2828
project_id = "<PROJECT ID>"
2929
names = ["first", "second"]
3030
prefix = "my-unique-prefix"

metadata.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ spec:
2424
source:
2525
repo: https://github.com/terraform-google-modules/terraform-google-cloud-storage.git
2626
sourceType: git
27-
version: 8.0.3
27+
version: 9.0.0
2828
actuationTool:
2929
flavor: Terraform
3030
version: ">= 0.13"

modules/simple_bucket/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Basic usage of this module is as follows:
1818
```hcl
1919
module "bucket" {
2020
source = "terraform-google-modules/cloud-storage/google//modules/simple_bucket"
21-
version = "~> 8.0"
21+
version = "~> 9.0"
2222
2323
name = "example-bucket"
2424
project_id = "example-project"

modules/simple_bucket/metadata.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ spec:
2525
repo: https://github.com/terraform-google-modules/terraform-google-cloud-storage.git
2626
sourceType: git
2727
dir: /modules/simple_bucket
28-
version: 8.0.3
28+
version: 9.0.0
2929
actuationTool:
3030
flavor: Terraform
3131
version: ">= 0.13"

modules/simple_bucket/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ terraform {
2525
}
2626

2727
provider_meta "google" {
28-
module_name = "blueprints/terraform/terraform-google-cloud-storage:simple_bucket/v8.0.3"
28+
module_name = "blueprints/terraform/terraform-google-cloud-storage:simple_bucket/v9.0.0"
2929
}
3030

3131
}

versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ terraform {
3030
}
3131

3232
provider_meta "google" {
33-
module_name = "blueprints/terraform/terraform-google-cloud-storage/v8.0.3"
33+
module_name = "blueprints/terraform/terraform-google-cloud-storage/v9.0.0"
3434
}
3535

3636
}

0 commit comments

Comments
 (0)