From b329b480c2c713064de2a998a0a2485c70a35ca3 Mon Sep 17 00:00:00 2001 From: Shahar Glazner Date: Tue, 31 Dec 2024 15:28:22 +0200 Subject: [PATCH 1/2] fix(ui): sources (#2947) --- keep-ui/tsconfig.json | 1 - 1 file changed, 1 deletion(-) diff --git a/keep-ui/tsconfig.json b/keep-ui/tsconfig.json index 7aceabb38..2087f066f 100644 --- a/keep-ui/tsconfig.json +++ b/keep-ui/tsconfig.json @@ -1,6 +1,5 @@ { "compilerOptions": { - "sourceMap": true, "target": "es6", "lib": ["dom", "dom.iterable", "esnext"], "allowJs": true, From 5dd4694e290fb181efd0d82a4b45bd3ee924ee12 Mon Sep 17 00:00:00 2001 From: Shahar Glazner Date: Tue, 31 Dec 2024 15:36:56 +0200 Subject: [PATCH 2/2] fix(ui): keycloak (#2949) --- keep-ui/auth.config.ts | 1 + pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/keep-ui/auth.config.ts b/keep-ui/auth.config.ts index 0a84fbdbd..85a4f03e5 100644 --- a/keep-ui/auth.config.ts +++ b/keep-ui/auth.config.ts @@ -230,6 +230,7 @@ export const config = { // TODO: remove this once we have a proper way to get the tenant id tenantId = (profile as any).keep_tenant_id || "keep"; role = (profile as any).keep_role; + accessToken = account.access_token; } else { accessToken = user.accessToken || account.access_token || account.id_token; diff --git a/pyproject.toml b/pyproject.toml index 77bdb74d4..859bc0811 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "keep" -version = "0.33.6" +version = "0.33.7" description = "Alerting. for developers, by developers." authors = ["Keep Alerting LTD"] packages = [{include = "keep"}]