From 8adaf3bfd30b53492249a96db75e77d1a469120c Mon Sep 17 00:00:00 2001 From: PTah Date: Sun, 21 Jun 2026 11:07:28 +1000 Subject: [PATCH] fix: WinRM update panel no longer blocks SAC navigation (0.20.21) --- backend/app/version.py | 2 +- backend/tests/test_health.py | 4 +- frontend/src/components/AppSidebar.vue | 39 ++++++ .../src/components/HostActionLogModal.vue | 112 +++++++++++++----- .../src/composables/useHostRemoteAction.ts | 12 +- frontend/src/version.ts | 2 +- 6 files changed, 134 insertions(+), 37 deletions(-) diff --git a/backend/app/version.py b/backend/app/version.py index 54c3c3f..60ffb5a 100644 --- a/backend/app/version.py +++ b/backend/app/version.py @@ -1,5 +1,5 @@ """Единый источник версии SAC (API, health, логи, OpenAPI).""" APP_NAME = "Security Alert Center" -APP_VERSION = "0.20.20" +APP_VERSION = "0.20.21" APP_VERSION_LABEL = f"{APP_NAME} v.{APP_VERSION}" diff --git a/backend/tests/test_health.py b/backend/tests/test_health.py index 9427441..f1f67f5 100644 --- a/backend/tests/test_health.py +++ b/backend/tests/test_health.py @@ -4,6 +4,6 @@ from app.version import APP_NAME, APP_VERSION, APP_VERSION_LABEL def test_version_constants(): - assert APP_VERSION == "0.20.20" + assert APP_VERSION == "0.20.21" assert APP_NAME == "Security Alert Center" - assert APP_VERSION_LABEL == "Security Alert Center v.0.20.20" + assert APP_VERSION_LABEL == "Security Alert Center v.0.20.21" diff --git a/frontend/src/components/AppSidebar.vue b/frontend/src/components/AppSidebar.vue index cca7836..5df7bee 100644 --- a/frontend/src/components/AppSidebar.vue +++ b/frontend/src/components/AppSidebar.vue @@ -8,6 +8,16 @@