From 2195837cf673acac6f34e5ce313a983d8ad85e1f Mon Sep 17 00:00:00 2001 From: Aarthy Adityan Date: Wed, 14 May 2025 14:41:18 -0400 Subject: [PATCH 1/2] fix(connection): bug in snowflake connection form --- testgen/ui/views/connections/page.py | 1 + 1 file changed, 1 insertion(+) diff --git a/testgen/ui/views/connections/page.py b/testgen/ui/views/connections/page.py index 10cab979..5de0e32e 100644 --- a/testgen/ui/views/connections/page.py +++ b/testgen/ui/views/connections/page.py @@ -97,6 +97,7 @@ def show_connection_form(self, selected_connection: dict, _mode: str, project_co FlavorForm = BaseConnectionForm.for_flavor(sql_flavor) if connection: connection["password"] = connection["password"] or "" + connection["private_key"] = connection["private_key"] or "" form_kwargs = connection or {"sql_flavor": sql_flavor, "connection_id": connection_id, "connection_name": connection_name} form = FlavorForm(**form_kwargs) From 407f777473118031ec1b7a524acb6fcf71b2401a Mon Sep 17 00:00:00 2001 From: Aarthy Adityan Date: Wed, 14 May 2025 14:47:18 -0400 Subject: [PATCH 2/2] release: 3.7.8 -> 3.7.9 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 56321182..aa84d886 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ build-backend = "setuptools.build_meta" [project] name = "dataops-testgen" -version = "3.7.8" +version = "3.7.9" description = "DataKitchen's Data Quality DataOps TestGen" authors = [ { "name" = "DataKitchen, Inc.", "email" = "info@datakitchen.io" },