From 01ec37e3226ac663a4b851638fa50bd8219092f1 Mon Sep 17 00:00:00 2001 From: Trent Rosenbaum Date: Mon, 24 Mar 2025 10:06:54 +0000 Subject: [PATCH 1/2] Updates to exclude .envrc file through .gitignore --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 8095ca7..d9b2d86 100644 --- a/.gitignore +++ b/.gitignore @@ -271,3 +271,4 @@ $RECYCLE.BIN/ bin/ vendor +.envrc From 297cf26ab08cb3a5552e44770e4011caacfc635a Mon Sep 17 00:00:00 2001 From: Trent Rosenbaum Date: Thu, 27 Mar 2025 15:53:39 +0000 Subject: [PATCH 2/2] Updates the Database model with QueryPerformanceFactor property --- service/databases/model.go | 1 + 1 file changed, 1 insertion(+) diff --git a/service/databases/model.go b/service/databases/model.go index df3809e..c2cd8be 100644 --- a/service/databases/model.go +++ b/service/databases/model.go @@ -79,6 +79,7 @@ type Database struct { PublicEndpoint *string `json:"publicEndpoint,omitempty"` RedisVersionCompliance *string `json:"redisVersionCompliance,omitempty"` Backup *Backup `json:"backup,omitempty"` + QueryPerformanceFactor *string `json:"queryPerformanceFactor,omitempty"` } func (o Database) String() string {