Skip to content

Commit 369bd6d

Browse files
chore(master): release 22.1.0 (#651)
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
1 parent 2b26a78 commit 369bd6d

File tree

17 files changed

+27
-19
lines changed

17 files changed

+27
-19
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ 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+
## [22.1.0](https://github.com/terraform-google-modules/terraform-google-sql-db/compare/v22.0.0...v22.1.0) (2024-10-01)
9+
10+
11+
### Features
12+
13+
* Adding flag for enabling data cache in MSSQL module ([#642](https://github.com/terraform-google-modules/terraform-google-sql-db/issues/642)) ([c9f0014](https://github.com/terraform-google-modules/terraform-google-sql-db/commit/c9f00146d7f557ed4dd35c3064049d4a5caf5f1a))
14+
* enable data_cache_config block for mysql ([#652](https://github.com/terraform-google-modules/terraform-google-sql-db/issues/652)) ([2b26a78](https://github.com/terraform-google-modules/terraform-google-sql-db/commit/2b26a781a862011c66147cb15080228aad1a8269))
15+
816
## [22.0.0](https://github.com/terraform-google-modules/terraform-google-sql-db/compare/v21.0.2...v22.0.0) (2024-09-13)
917

1018

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 = "~> 22.0"
83+
version = "~> 22.1"
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 = "~> 22.0"
26+
version = "~> 22.1"
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 = "~> 22.0"
29+
version = "~> 22.1"
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 = "~> 22.0"
15+
version = "~> 22.1"
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: 22.0.0
28+
version: 22.1.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/v22.0.0"
39+
module_name = "blueprints/terraform/terraform-google-sql-db:mssql/v22.1.0"
4040
}
4141

4242
}

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: 22.0.0
28+
version: 22.1.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/v22.0.0"
39+
module_name = "blueprints/terraform/terraform-google-sql-db:mysql/v22.1.0"
4040
}
4141
provider_meta "google-beta" {
42-
module_name = "blueprints/terraform/terraform-google-sql-db:mysql/v22.0.0"
42+
module_name = "blueprints/terraform/terraform-google-sql-db:mysql/v22.1.0"
4343
}
4444

4545
}

modules/postgresql/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Basic usage of this module is as follows:
1313
```hcl
1414
module "pg" {
1515
source = "terraform-google-modules/sql-db/google//modules/postgresql"
16-
version = "~> 22.0"
16+
version = "~> 22.1"
1717
1818
name = var.pg_ha_name
1919
random_instance_name = true

0 commit comments

Comments
 (0)