@cosmicdrift/kumiko-renderer 0.5.1 → 0.5.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +22 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# @cosmicdrift/kumiko-renderer
|
|
2
2
|
|
|
3
|
+
## 0.5.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 4f0d781: fix(tenant): updateMemberRoles erlaubt "system"-Rolle (symmetrisch zu create)
|
|
8
|
+
|
|
9
|
+
Drift innerhalb des tenant-Features: `tenant:write:create` akzeptierte
|
|
10
|
+
`["system", "SystemAdmin"]`, `tenant:write:update-member-roles` aber
|
|
11
|
+
nur `["SystemAdmin"]`. Konsequenz: ops-tooling und seed-migrations
|
|
12
|
+
(`createSystemUser` mit `roles: ["system"]`) konnten den Handler nicht
|
|
13
|
+
aufrufen — `access_denied`.
|
|
14
|
+
|
|
15
|
+
Live entdeckt beim ersten Driver-Sample der es-ops Phase 1: publicstatus
|
|
16
|
+
seed `2026-05-20-fix-admin-roles.ts` rief `update-member-roles` via
|
|
17
|
+
`systemWriteAs` → access_denied → Pod CrashLoopBackOff.
|
|
18
|
+
|
|
19
|
+
Plus access-rule-Pinning-Test in `tenant.integration.ts`-scenario-7.
|
|
20
|
+
|
|
21
|
+
- Updated dependencies [4f0d781]
|
|
22
|
+
- @cosmicdrift/kumiko-framework@0.5.2
|
|
23
|
+
- @cosmicdrift/kumiko-headless@0.5.2
|
|
24
|
+
|
|
3
25
|
## 0.5.1
|
|
4
26
|
|
|
5
27
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cosmicdrift/kumiko-renderer",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.2",
|
|
4
4
|
"description": "Platform-agnostic React renderer for Kumiko screens. Contains the shared logic — primitives-contract, hooks, KumikoScreen, navigation & SSE abstractions — that any platform-specific renderer (web, native) composes. No DOM, no EventSource, no react-dom.",
|
|
5
5
|
"license": "BUSL-1.1",
|
|
6
6
|
"author": "Marc Frost <marc@cosmicdriftgamestudio.com>",
|
|
@@ -15,8 +15,8 @@
|
|
|
15
15
|
}
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@cosmicdrift/kumiko-framework": "0.5.
|
|
19
|
-
"@cosmicdrift/kumiko-headless": "0.5.
|
|
18
|
+
"@cosmicdrift/kumiko-framework": "0.5.2",
|
|
19
|
+
"@cosmicdrift/kumiko-headless": "0.5.2",
|
|
20
20
|
"react": "^19.2.6"
|
|
21
21
|
},
|
|
22
22
|
"devDependencies": {
|