From ac693961788dfded7100c11f141d845ac25bd114 Mon Sep 17 00:00:00 2001 From: Edgar Gomes Date: Fri, 16 Aug 2024 14:35:28 -0300 Subject: [PATCH 1/4] chore(main): release 0.1.16 (#162) :robot: I have created a release *beep* *boop* --- ## [0.1.16](https://github.com/kurtosis-tech/kardinal-kontrol-private/compare/0.1.15...0.1.16) (2024-08-16) ### Features * allow for templates to work ([#160](https://github.com/kurtosis-tech/kardinal-kontrol-private/issues/160)) ([3f70e0a](https://github.com/kurtosis-tech/kardinal-kontrol-private/commit/3f70e0a001cc4027fb7e17d54c4529152cb491a9)) * RDS cloud formation and DB secrets exposed to kontrol service pods ([#147](https://github.com/kurtosis-tech/kardinal-kontrol-private/issues/147)) ([0457a89](https://github.com/kurtosis-tech/kardinal-kontrol-private/commit/0457a893fb3274e6f4dbd11e4e0786a1c7567035)) ### Bug Fixes * allow for job to run on kontrol private repo ([#170](https://github.com/kurtosis-tech/kardinal-kontrol-private/issues/170)) ([786e7be](https://github.com/kurtosis-tech/kardinal-kontrol-private/commit/786e7be2fb02b89ce296aecd393da81af38c8825)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). --- CHANGELOG.md | 13 +++++++++++++ version.txt | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 479f62d..08508df 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## [0.1.16](https://github.com/kurtosis-tech/kardinal-kontrol-private/compare/0.1.15...0.1.16) (2024-08-16) + + +### Features + +* allow for templates to work ([#160](https://github.com/kurtosis-tech/kardinal-kontrol-private/issues/160)) ([3f70e0a](https://github.com/kurtosis-tech/kardinal-kontrol-private/commit/3f70e0a001cc4027fb7e17d54c4529152cb491a9)) +* RDS cloud formation and DB secrets exposed to kontrol service pods ([#147](https://github.com/kurtosis-tech/kardinal-kontrol-private/issues/147)) ([a34e81a](https://github.com/kurtosis-tech/kardinal-kontrol-private/commit/a34e81a0e0ffdbb33ee1fb8443c341b1591800cb)) + + +### Bug Fixes + +* allow for job to run on kontrol private repo ([#170](https://github.com/kurtosis-tech/kardinal-kontrol-private/issues/170)) ([786e7be](https://github.com/kurtosis-tech/kardinal-kontrol-private/commit/786e7be2fb02b89ce296aecd393da81af38c8825)) + ## [0.1.15](https://github.com/kurtosis-tech/kardinal-kontrol/compare/0.1.14...0.1.15) (2024-08-14) diff --git a/version.txt b/version.txt index c34958a..e8e277f 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -0.1.15 +0.1.16 From 7570d523f915b5a33be9316f27a985ef4b23c8ed Mon Sep 17 00:00:00 2001 From: Laurent Luce Date: Mon, 26 Aug 2024 11:03:15 -0400 Subject: [PATCH 2/4] Prelload flows and templates in GetTenant similar to GetOrCreateTenant (#6) --- kontrol-service/database/tenant.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kontrol-service/database/tenant.go b/kontrol-service/database/tenant.go index f3b720d..153a12e 100644 --- a/kontrol-service/database/tenant.go +++ b/kontrol-service/database/tenant.go @@ -46,7 +46,7 @@ func (db *Db) GetTenant( tenantId string, ) (*Tenant, error) { var tenant Tenant - result := db.db.Where("tenant_id = ?", tenantId).First(&tenant) + result := db.db.Where("tenant_id = ?", tenantId).Preload("Flows").Preload("Templates").First(&tenant) if result.Error != nil { if result.Error == gorm.ErrRecordNotFound { return nil, nil From ae515aeff9762d38987e75a0e8018121e422eb5a Mon Sep 17 00:00:00 2001 From: lostbean Date: Mon, 26 Aug 2024 13:20:47 -0300 Subject: [PATCH 3/4] chore: release 0.1.21 Release-As: 0.1.21 From e7792698b6aa4623e7a85eea9872fdf99ea14129 Mon Sep 17 00:00:00 2001 From: Edgar Gomes Date: Mon, 26 Aug 2024 13:57:45 -0300 Subject: [PATCH 4/4] chore(main): release 0.1.21 (#7) --- CHANGELOG.md | 7 +++++++ version.txt | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 224fcd5..7734b7a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.1.21](https://github.com/kurtosis-tech/kardinal-kontrol/compare/0.1.20...0.1.21) (2024-08-26) + + +### Miscellaneous Chores + +* release 0.1.21 ([ae515ae](https://github.com/kurtosis-tech/kardinal-kontrol/commit/ae515aeff9762d38987e75a0e8018121e422eb5a)) + ## 0.1.20 (2024-08-24) diff --git a/version.txt b/version.txt index baa9837..7906299 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -0.1.20 +0.1.21