@cosmicdrift/kumiko-dev-server 0.5.0 → 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 +42 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,47 @@
|
|
|
1
1
|
# @cosmicdrift/kumiko-dev-server
|
|
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-bundled-features@0.5.2
|
|
24
|
+
|
|
25
|
+
## 0.5.1
|
|
26
|
+
|
|
27
|
+
### Patch Changes
|
|
28
|
+
|
|
29
|
+
- 0e00015: fix(es-ops): path.resolve statt path.join für seedsDir → seed-files
|
|
30
|
+
|
|
31
|
+
Bun's `await import()` braucht absolute Pfade. Wenn der App-Author
|
|
32
|
+
`runProdApp({ seedsDir: "./seeds" })` setzt (relativ), würde
|
|
33
|
+
`path.join("./seeds", "foo.ts")` einen relativen Pfad liefern → Bun's
|
|
34
|
+
Import-Resolver such relativ zum `runner.ts`-Modul (nicht zum
|
|
35
|
+
`process.cwd()`) → `Cannot find module 'seeds/...' from '<runner-path>'`.
|
|
36
|
+
|
|
37
|
+
`path.resolve` löst gegen `process.cwd()` auf → absolute Pfade →
|
|
38
|
+
Import funktioniert. Aufgedeckt beim ersten Live-Boot der publicstatus-
|
|
39
|
+
Driver-Migration (Pod CrashLoopBackOff).
|
|
40
|
+
|
|
41
|
+
- Updated dependencies [0e00015]
|
|
42
|
+
- @cosmicdrift/kumiko-framework@0.5.1
|
|
43
|
+
- @cosmicdrift/kumiko-bundled-features@0.5.1
|
|
44
|
+
|
|
3
45
|
## 0.5.0
|
|
4
46
|
|
|
5
47
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cosmicdrift/kumiko-dev-server",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.2",
|
|
4
4
|
"description": "Development server bootstrap for Kumiko apps. Bundles the client, mints dev-JWTs, injects the resolved AppSchema, and seeds an admin. Not for production.",
|
|
5
5
|
"license": "BUSL-1.1",
|
|
6
6
|
"author": "Marc Frost <marc@cosmicdriftgamestudio.com>",
|
|
@@ -48,8 +48,8 @@
|
|
|
48
48
|
"kumiko-dev": "./bin/kumiko-dev.ts"
|
|
49
49
|
},
|
|
50
50
|
"dependencies": {
|
|
51
|
-
"@cosmicdrift/kumiko-bundled-features": "0.5.
|
|
52
|
-
"@cosmicdrift/kumiko-framework": "0.5.
|
|
51
|
+
"@cosmicdrift/kumiko-bundled-features": "0.5.2",
|
|
52
|
+
"@cosmicdrift/kumiko-framework": "0.5.2"
|
|
53
53
|
},
|
|
54
54
|
"publishConfig": {
|
|
55
55
|
"registry": "https://registry.npmjs.org",
|