From 794fcf90f8d759eb140d3b5b0a880482912a79be Mon Sep 17 00:00:00 2001 From: Albrecht Degering Date: Tue, 4 Aug 2026 15:10:12 +0200 Subject: [PATCH] Release v0.1.15 --- package.json | 10 +++++----- pyproject.toml | 4 ++-- src/govoplan_access/__init__.py | 2 +- src/govoplan_access/backend/manifest.py | 2 +- webui/package.json | 4 ++-- 5 files changed, 11 insertions(+), 11 deletions(-) diff --git a/package.json b/package.json index 2120819..e79a520 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@govoplan/access-webui", - "version": "0.1.11", + "version": "0.1.15", "private": true, "type": "module", "main": "webui/src/index.ts", @@ -18,11 +18,11 @@ "LICENSE" ], "peerDependencies": { - "@govoplan/core-webui": "^0.1.11", + "@govoplan/core-webui": "^0.1.15", "lucide-react": "^1.23.0", - "react": "^19.0.0", - "react-dom": "^19.0.0", - "react-router-dom": "^7.1.1" + "react": ">=19.2.7 <20", + "react-dom": ">=19.2.7 <20", + "react-router": ">=8.3.0 <9" }, "peerDependenciesMeta": { "@govoplan/core-webui": { diff --git a/pyproject.toml b/pyproject.toml index c9501cb..6b081f6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,14 +4,14 @@ build-backend = "setuptools.build_meta" [project] name = "govoplan-access" -version = "0.1.11" +version = "0.1.15" description = "GovOPlaN access platform module with identity, auth, RBAC, and scope primitives." readme = "README.md" requires-python = ">=3.12" license = { file = "LICENSE" } authors = [{ name = "GovOPlaN" }] dependencies = [ - "govoplan-core>=0.1.11", + "govoplan-core>=0.1.15", "redis>=5,<6", "SQLAlchemy>=2,<3", ] diff --git a/src/govoplan_access/__init__.py b/src/govoplan_access/__init__.py index 23e6bcf..fae81e6 100644 --- a/src/govoplan_access/__init__.py +++ b/src/govoplan_access/__init__.py @@ -1,3 +1,3 @@ """GovOPlaN access platform module.""" -__version__ = "0.1.11" +__version__ = "0.1.15" diff --git a/src/govoplan_access/backend/manifest.py b/src/govoplan_access/backend/manifest.py index 89e4b2d..8e2efc3 100644 --- a/src/govoplan_access/backend/manifest.py +++ b/src/govoplan_access/backend/manifest.py @@ -761,7 +761,7 @@ def _people_search(context: ModuleContext) -> object: manifest = ModuleManifest( id="access", name="Access", - version="0.1.11", + version="0.1.15", optional_dependencies=("identity", "organizations", "tenancy", "idm"), provides_interfaces=( ModuleInterfaceProvider(name=CAPABILITY_ACCESS_PEOPLE_SEARCH, version="0.1.0"), diff --git a/webui/package.json b/webui/package.json index d2e205e..b5a7eba 100644 --- a/webui/package.json +++ b/webui/package.json @@ -1,6 +1,6 @@ { "name": "@govoplan/access-webui", - "version": "0.1.11", + "version": "0.1.15", "private": true, "type": "module", "scripts": { @@ -16,7 +16,7 @@ } }, "peerDependencies": { - "@govoplan/core-webui": "^0.1.11", + "@govoplan/core-webui": "^0.1.15", "lucide-react": "^1.23.0", "react": ">=19.2.7 <20", "react-dom": ">=19.2.7 <20",