Skip to content

Commit 48638bc

Browse files
chore(master): release 25.0.0 (#677)
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
1 parent de13aa9 commit 48638bc

File tree

19 files changed

+32
-21
lines changed

19 files changed

+32
-21
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,17 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/) and this
66
project adheres to [Semantic Versioning](http://semver.org/).
77

8+
## [25.0.0](https://github.com/terraform-google-modules/terraform-google-sql-db/compare/v24.0.1...v25.0.0) (2024-12-10)
9+
10+
11+
### ⚠ BREAKING CHANGES
12+
13+
* remove output variable apphub_service_uri from postgersql/mysql module as it is not supported ([#676](https://github.com/terraform-google-modules/terraform-google-sql-db/issues/676))
14+
15+
### Bug Fixes
16+
17+
* remove output variable apphub_service_uri from postgersql/mysql module as it is not supported ([#676](https://github.com/terraform-google-modules/terraform-google-sql-db/issues/676)) ([de13aa9](https://github.com/terraform-google-modules/terraform-google-sql-db/commit/de13aa975f9bcdfd642bff94884a70aa1b43ce14))
18+
819
## [24.0.1](https://github.com/terraform-google-modules/terraform-google-sql-db/compare/v24.0.0...v24.0.1) (2024-12-01)
920

1021

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ For MySQL :
8080
```
8181
module "sql-db" {
8282
source = "GoogleCloudPlatform/sql-db/google//modules/mysql"
83-
version = "~> 24.0"
83+
version = "~> 25.0"
8484
}
8585
```
8686

examples/mssql-failover-replica/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Promote instance 2 as primary and change instance 1 as failover replica
2323
```diff
2424
module "mssql2" {
2525
source = "terraform-google-modules/sql-db/google//modules/mssql"
26-
version = "~> 24.0"
26+
version = "~> 25.0"
2727

2828
- master_instance_name = module.mssql1.instance_name
2929

examples/postgresql-with-cross-region-failover/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Promote instance 2 as primary and change instance 1 as failover replica
2626
```diff
2727
module "pg2" {
2828
source = "terraform-google-modules/sql-db/google//modules/postgresql"
29-
version = "~> 24.0"
29+
version = "~> 25.0"
3030

3131
- master_instance_name = module.pg1.instance_name
3232

modules/mssql/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Basic usage of this module is as follows:
1212
```hcl
1313
module "mssql" {
1414
source = "terraform-google-modules/sql-db/google//modules/mssql"
15-
version = "~> 24.0"
15+
version = "~> 25.0"
1616
1717
name = var.name
1818
random_instance_name = true

modules/mssql/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-sql-db.git
2626
sourceType: git
2727
dir: /modules/mssql
28-
version: 24.0.1
28+
version: 25.0.0
2929
actuationTool:
3030
flavor: Terraform
3131
version: ">= 1.3"

modules/mssql/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ terraform {
3636
}
3737

3838
provider_meta "google-beta" {
39-
module_name = "blueprints/terraform/terraform-google-sql-db:mssql/v24.0.1"
39+
module_name = "blueprints/terraform/terraform-google-sql-db:mssql/v25.0.0"
4040
}
4141

4242
}

modules/mysql/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Functional examples are included in the [examples](../../examples/) directory. B
1010
```hcl
1111
module "mysql-db" {
1212
source = "terraform-google-modules/sql-db/google//modules/mysql"
13-
version = "~> 24.0"
13+
version = "~> 25.0"
1414
1515
name = var.db_name
1616
random_instance_name = true

modules/mysql/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-sql-db.git
2626
sourceType: git
2727
dir: /modules/mysql
28-
version: 24.0.1
28+
version: 25.0.0
2929
actuationTool:
3030
flavor: Terraform
3131
version: ">= 1.3"

modules/mysql/versions.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,10 @@ terraform {
3636
}
3737

3838
provider_meta "google" {
39-
module_name = "blueprints/terraform/terraform-google-sql-db:mysql/v24.0.1"
39+
module_name = "blueprints/terraform/terraform-google-sql-db:mysql/v25.0.0"
4040
}
4141
provider_meta "google-beta" {
42-
module_name = "blueprints/terraform/terraform-google-sql-db:mysql/v24.0.1"
42+
module_name = "blueprints/terraform/terraform-google-sql-db:mysql/v25.0.0"
4343
}
4444

4545
}

0 commit comments

Comments
 (0)