Skip to content

Commit

Permalink
ci: Prepare for the 0.7.1 release (#462)
Browse files Browse the repository at this point in the history
* ci: Prepare for the 0.7.1 release

* fix: block update attempt if cluster is not ready

* fix: delay pg and pgd update from checking healthy status too fast

* fix: updated comments

* fix: change log
  • Loading branch information
wai-wong-edb authored Feb 12, 2024
1 parent 0b94d3f commit 8ffd70d
Show file tree
Hide file tree
Showing 48 changed files with 112 additions and 76 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## v0.7.1 (February 07. 2024)
Bug Fixes:
* Fixed pg config to only use user custom config values in plan and not include default config values
* Small bug fixes on create/update operation for `biganimal_pgd` and `biganimal_cluster` resources

Enhancements:
* Updated default storage size from 4 Gi to 32 Gi in examples for `biganimal_pgd` resources

## v0.7.0 (January 12. 2024)
Features:
* Pgvector support for `biganimal_cluster` resources
Expand Down
2 changes: 1 addition & 1 deletion GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ HOSTNAME=registry.terraform.io
NAMESPACE=EnterpriseDB
NAME=biganimal
BINARY=terraform-provider-${NAME}
VERSION=0.7.0
VERSION=0.7.1

# Figure out the OS and ARCH of the
# builder machine
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.7.0"
version = "0.7.1"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion docs/data-sources/pgd.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.7.0"
version = "0.7.1"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion docs/resources/aws_connection.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.7.0"
version = "0.7.1"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion docs/resources/azure_connection.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.7.0"
version = "0.7.1"
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions docs/resources/cluster.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.7.0"
version = "0.7.1"
}
random = {
source = "hashicorp/random"
Expand Down Expand Up @@ -125,7 +125,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.7.0"
version = "0.7.1"
}
random = {
source = "hashicorp/random"
Expand Down
4 changes: 2 additions & 2 deletions docs/resources/faraway_replica.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.7.0"
version = "0.7.1"
}
random = {
source = "hashicorp/random"
Expand Down Expand Up @@ -102,7 +102,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.7.0"
version = "0.7.1"
}
random = {
source = "hashicorp/random"
Expand Down
60 changes: 30 additions & 30 deletions docs/resources/pgd.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.7.0"
version = "0.7.1"
}
random = {
source = "hashicorp/random"
Expand Down Expand Up @@ -73,7 +73,7 @@ resource "biganimal_pgd" "pgd_cluster" {
storage = {
volume_type = "azurepremiumstorage"
volume_properties = "P2"
size = "8 Gi"
size = "32 Gi"
}
pg_type = {
pg_type_id = "epas"
Expand Down Expand Up @@ -109,7 +109,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.7.0"
version = "0.7.1"
}
random = {
source = "hashicorp/random"
Expand Down Expand Up @@ -172,7 +172,7 @@ resource "biganimal_pgd" "pgd_cluster" {
storage = {
volume_type = "azurepremiumstorage"
volume_properties = "P2"
size = "8 Gi"
size = "32 Gi"
}
pg_type = {
pg_type_id = "epas"
Expand Down Expand Up @@ -226,7 +226,7 @@ resource "biganimal_pgd" "pgd_cluster" {
storage = {
volume_type = "azurepremiumstorage"
volume_properties = "P2"
size = "8 Gi"
size = "32 Gi"
}
pg_type = {
pg_type_id = "epas"
Expand Down Expand Up @@ -277,7 +277,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.7.0"
version = "0.7.1"
}
random = {
source = "hashicorp/random"
Expand Down Expand Up @@ -340,7 +340,7 @@ resource "biganimal_pgd" "pgd_cluster" {
storage = {
volume_type = "azurepremiumstorage"
volume_properties = "P2"
size = "8 Gi"
size = "32 Gi"
}
pg_type = {
pg_type_id = "epas"
Expand Down Expand Up @@ -379,7 +379,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.7.0"
version = "0.7.1"
}
random = {
source = "hashicorp/random"
Expand Down Expand Up @@ -442,7 +442,7 @@ resource "biganimal_pgd" "pgd_cluster" {
storage = {
volume_type = "azurepremiumstorage"
volume_properties = "P2"
size = "8 Gi"
size = "32 Gi"
}
pg_type = {
pg_type_id = "epas"
Expand Down Expand Up @@ -499,7 +499,7 @@ resource "biganimal_pgd" "pgd_cluster" {
storage = {
volume_type = "azurepremiumstorage"
volume_properties = "P2"
size = "8 Gi"
size = "32 Gi"
}
pg_type = {
pg_type_id = "epas"
Expand Down Expand Up @@ -553,7 +553,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.7.0"
version = "0.7.1"
}
random = {
source = "hashicorp/random"
Expand Down Expand Up @@ -616,7 +616,7 @@ resource "biganimal_pgd" "pgd_cluster" {
storage = {
volume_type = "gp3"
volume_properties = "gp3"
size = "4 Gi"
size = "32 Gi"
}
pg_type = {
pg_type_id = "epas"
Expand Down Expand Up @@ -652,7 +652,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.7.0"
version = "0.7.1"
}
random = {
source = "hashicorp/random"
Expand Down Expand Up @@ -715,7 +715,7 @@ resource "biganimal_pgd" "pgd_cluster" {
storage = {
volume_type = "gp3"
volume_properties = "gp3"
size = "4 Gi"
size = "32 Gi"
}
pg_type = {
pg_type_id = "epas"
Expand Down Expand Up @@ -769,7 +769,7 @@ resource "biganimal_pgd" "pgd_cluster" {
storage = {
volume_type = "gp3"
volume_properties = "gp3"
size = "4 Gi"
size = "32 Gi"
}
pg_type = {
pg_type_id = "epas"
Expand Down Expand Up @@ -820,7 +820,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.7.0"
version = "0.7.1"
}
random = {
source = "hashicorp/random"
Expand Down Expand Up @@ -883,7 +883,7 @@ resource "biganimal_pgd" "pgd_cluster" {
storage = {
volume_type = "gp3"
volume_properties = "gp3"
size = "4 Gi"
size = "32 Gi"
}
pg_type = {
pg_type_id = "epas"
Expand Down Expand Up @@ -922,7 +922,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.7.0"
version = "0.7.1"
}
random = {
source = "hashicorp/random"
Expand Down Expand Up @@ -985,7 +985,7 @@ resource "biganimal_pgd" "pgd_cluster" {
storage = {
volume_type = "gp3"
volume_properties = "gp3"
size = "4 Gi"
size = "32 Gi"
}
pg_type = {
pg_type_id = "epas"
Expand Down Expand Up @@ -1042,7 +1042,7 @@ resource "biganimal_pgd" "pgd_cluster" {
storage = {
volume_type = "gp3"
volume_properties = "gp3"
size = "4 Gi"
size = "32 Gi"
}
pg_type = {
pg_type_id = "epas"
Expand Down Expand Up @@ -1096,7 +1096,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.7.0"
version = "0.7.1"
}
random = {
source = "hashicorp/random"
Expand Down Expand Up @@ -1159,7 +1159,7 @@ resource "biganimal_pgd" "pgd_cluster" {
storage = {
volume_type = "pd-ssd"
volume_properties = "pd-ssd"
size = "10 Gi"
size = "32 Gi"
}
pg_type = {
pg_type_id = "epas"
Expand Down Expand Up @@ -1195,7 +1195,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.7.0"
version = "0.7.1"
}
random = {
source = "hashicorp/random"
Expand Down Expand Up @@ -1258,7 +1258,7 @@ resource "biganimal_pgd" "pgd_cluster" {
storage = {
volume_type = "pd-ssd"
volume_properties = "pd-ssd"
size = "10 Gi"
size = "32 Gi"
}
pg_type = {
pg_type_id = "epas"
Expand Down Expand Up @@ -1312,7 +1312,7 @@ resource "biganimal_pgd" "pgd_cluster" {
storage = {
volume_type = "pd-ssd"
volume_properties = "pd-ssd"
size = "10 Gi"
size = "32 Gi"
}
pg_type = {
pg_type_id = "epas"
Expand Down Expand Up @@ -1363,7 +1363,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.7.0"
version = "0.7.1"
}
random = {
source = "hashicorp/random"
Expand Down Expand Up @@ -1426,7 +1426,7 @@ resource "biganimal_pgd" "pgd_cluster" {
storage = {
volume_type = "pd-ssd"
volume_properties = "pd-ssd"
size = "10 Gi"
size = "32 Gi"
}
pg_type = {
pg_type_id = "epas"
Expand Down Expand Up @@ -1469,7 +1469,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.7.0"
version = "0.7.1"
}
random = {
source = "hashicorp/random"
Expand Down Expand Up @@ -1532,7 +1532,7 @@ resource "biganimal_pgd" "pgd_cluster" {
storage = {
volume_type = "pd-ssd"
volume_properties = "pd-ssd"
size = "10 Gi"
size = "32 Gi"
}
pg_type = {
pg_type_id = "epas"
Expand Down Expand Up @@ -1593,7 +1593,7 @@ resource "biganimal_pgd" "pgd_cluster" {
storage = {
volume_type = "pd-ssd"
volume_properties = "pd-ssd"
size = "10 Gi"
size = "32 Gi"
}
pg_type = {
pg_type_id = "epas"
Expand Down
2 changes: 1 addition & 1 deletion docs/resources/project.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.7.0"
version = "0.7.1"
}
random = {
source = "hashicorp/random"
Expand Down
2 changes: 1 addition & 1 deletion docs/resources/region.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.7.0"
version = "0.7.1"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion examples/data-sources/biganimal_aws_connection/provider.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.7.0"
version = "0.7.1"
}
}
}
2 changes: 1 addition & 1 deletion examples/data-sources/biganimal_cluster/provider.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.7.0"
version = "0.7.1"
}
}
}
Loading

0 comments on commit 8ffd70d

Please sign in to comment.