From 4b960ad37f0de0ef5224a0db22e95f84f0c9b3ca Mon Sep 17 00:00:00 2001 From: Albrecht Degering Date: Sat, 11 Jul 2026 16:49:01 +0200 Subject: [PATCH] Release v0.1.8 --- README.md | 5 ++++- package.json | 4 ++-- pyproject.toml | 6 +++--- src/govoplan_dashboard/backend/manifest.py | 2 +- webui/package.json | 4 ++-- 5 files changed, 12 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 6f9028b..9f2ffad 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,9 @@ # GovOPlaN Dashboard + +**Repository type:** module (platform). + + Configurable dashboard module for GovOPlaN. The module owns the `/dashboard` route when installed. Core keeps only a minimal @@ -9,4 +13,3 @@ Modules contribute widgets through the `dashboard.widgets` WebUI capability. The first implementation stores personal widget visibility in browser storage; server-side layout persistence can be added later without changing the widget contract. - diff --git a/package.json b/package.json index 4982a70..b9d7758 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@govoplan/dashboard-webui", - "version": "0.1.7", + "version": "0.1.8", "private": true, "type": "module", "main": "webui/src/index.ts", @@ -18,7 +18,7 @@ "README.md" ], "peerDependencies": { - "@govoplan/core-webui": "^0.1.7", + "@govoplan/core-webui": "^0.1.8", "lucide-react": "^1.23.0", "react": "^19.0.0", "react-dom": "^19.0.0", diff --git a/pyproject.toml b/pyproject.toml index 3804841..8709bfc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,14 +4,14 @@ build-backend = "setuptools.build_meta" [project] name = "govoplan-dashboard" -version = "0.1.7" +version = "0.1.8" description = "GovOPlaN configurable dashboard module." readme = "README.md" requires-python = ">=3.12" authors = [{ name = "GovOPlaN" }] dependencies = [ - "govoplan-core>=0.1.7", - "govoplan-access>=0.1.7", + "govoplan-core>=0.1.8", + "govoplan-access>=0.1.8", ] [tool.setuptools.packages.find] diff --git a/src/govoplan_dashboard/backend/manifest.py b/src/govoplan_dashboard/backend/manifest.py index 87ec9b9..1914f76 100644 --- a/src/govoplan_dashboard/backend/manifest.py +++ b/src/govoplan_dashboard/backend/manifest.py @@ -7,7 +7,7 @@ from govoplan_core.core.modules import DocumentationTopic, FrontendModule, Front manifest = ModuleManifest( id="dashboard", name="Dashboard", - version="0.1.7", + version="0.1.8", required_capabilities=(CAPABILITY_AUTH_PRINCIPAL_RESOLVER, CAPABILITY_AUTH_PERMISSION_EVALUATOR), optional_dependencies=("ops", "campaigns", "files", "mail", "tasks", "notifications", "reporting"), nav_items=(NavItem(path="/dashboard", label="Dashboard", icon="dashboard", order=10),), diff --git a/webui/package.json b/webui/package.json index 37eb0e9..66a2e14 100644 --- a/webui/package.json +++ b/webui/package.json @@ -1,6 +1,6 @@ { "name": "@govoplan/dashboard-webui", - "version": "0.1.7", + "version": "0.1.8", "private": true, "type": "module", "main": "src/index.ts", @@ -14,7 +14,7 @@ "./styles/dashboard.css": "./src/styles/dashboard.css" }, "peerDependencies": { - "@govoplan/core-webui": "^0.1.7", + "@govoplan/core-webui": "^0.1.8", "lucide-react": "^1.23.0", "react": "^19.0.0", "react-dom": "^19.0.0",