From b1c020ea8d0eb1b9446abadf83db08db6b4fec0c Mon Sep 17 00:00:00 2001 From: Julius Freidank Date: Thu, 16 Apr 2026 10:07:23 +0200 Subject: [PATCH 1/2] dbt: set anonymous usage stats and colors to false via environment variables --- ewah/utils/dbt_operator.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ewah/utils/dbt_operator.py b/ewah/utils/dbt_operator.py index 71f0ebc..ad7fd2f 100644 --- a/ewah/utils/dbt_operator.py +++ b/ewah/utils/dbt_operator.py @@ -136,6 +136,8 @@ def execute(self, context): # env to be used in processes later env = os.environ.copy() env["PIP_USER"] = "no" + env["DBT_SEND_ANONYMOUS_USAGE_STATS"] = "False" + env["DBT_USE_COLORS"] = "False" if self.env_var_conn_ids: for env_var_conn_id in self.env_var_conn_ids: From f1e29ac97902738ca6d9a55e5891e15cc148c2a7 Mon Sep 17 00:00:00 2001 From: Julius Freidank Date: Thu, 16 Apr 2026 10:25:07 +0200 Subject: [PATCH 2/2] BUMP VERSION --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index f76e5a8..b1e296b 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.9.24 \ No newline at end of file +0.9.28 \ No newline at end of file