@cosmicdrift/kumiko-headless 0.2.1 → 0.2.3

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +71 -0
  2. package/package.json +3 -3
package/CHANGELOG.md ADDED
@@ -0,0 +1,71 @@
1
+ # @cosmicdrift/kumiko-headless
2
+
3
+ ## 0.2.3
4
+
5
+ ### Patch Changes
6
+
7
+ - @cosmicdrift/kumiko-framework@0.2.3
8
+
9
+ ## 0.2.2
10
+
11
+ ### Patch Changes
12
+
13
+ - 7a7da3e: Re-publish 0.2.1 → 0.2.2 mit korrekt aufgelösten cross-package-Versionen.
14
+ 0.2.1 hatte `workspace:*` als Wert in den dependencies (npm publish ohne
15
+ yarn-pack rewrite), Konsumenten bekamen "Workspace not found".
16
+
17
+ publish-with-oidc.sh nutzt jetzt `yarn pack` (rewrited workspace:\*) +
18
+ `npm publish <tarball>` (OIDC + provenance).
19
+
20
+ - Updated dependencies [7a7da3e]
21
+ - @cosmicdrift/kumiko-framework@0.2.2
22
+
23
+ ## 0.2.1
24
+
25
+ ### Patch Changes
26
+
27
+ - 48b7f6a: CI: switch publish to npm-CLI with OIDC Trusted Publishing + provenance.
28
+ No source changes — verifies the new publish path produces a verified-
29
+ provenance attestation on npmjs.com instead of token-based publish.
30
+ - Updated dependencies [48b7f6a]
31
+ - @cosmicdrift/kumiko-framework@0.2.1
32
+
33
+ ## 0.2.0
34
+
35
+ ### Minor Changes
36
+
37
+ - 6c70b6f: fix(tenant): seedTenant idempotent gegen Event-Store-Projection-Drift.
38
+
39
+ Verhindert version_conflict beim App-Boot wenn Aggregat existiert aber
40
+ Projection-Row fehlt (rebuild-drift, async-lag, manueller DB-Eingriff).
41
+
42
+ ### Patch Changes
43
+
44
+ - Updated dependencies [6c70b6f]
45
+ - @cosmicdrift/kumiko-framework@0.2.0
46
+
47
+ ## 0.1.0
48
+
49
+ ### Minor Changes
50
+
51
+ - 59ba6d7: Initial public release of Kumiko — AI-native backend builder.
52
+
53
+ What ships in 0.1.0:
54
+
55
+ - **Engine** (`@cosmicdrift/kumiko-framework`): `defineFeature`, `r.entity`, `r.writeHandler`, `r.queryHandler`, `r.projection`, `r.multiStreamProjection`, `r.hook`, `r.translations`, `r.crud`, `r.referenceData`, `r.screen`, `r.nav`, `r.authClaims`, full lifecycle pipeline with field-level access checks
56
+ - **Pipeline** (`@cosmicdrift/kumiko-framework`): `createDispatcher`, JWT auth via jose, Zod schema validation, role-based access checks, command/write/query split
57
+ - **DB** (`@cosmicdrift/kumiko-framework`): Drizzle helpers (`buildDrizzleTable`, `applyCursorQuery`), CRUD executor, Postgres dialect, optimistic locking, soft delete, multi-tenant scoping
58
+ - **Event sourcing** (`@cosmicdrift/kumiko-framework`): aggregate streams, single + multi-stream projections, event upcasters, asOf queries, archive support, AsyncDaemon-pattern dispatcher
59
+ - **Bundled features** (`@cosmicdrift/kumiko-bundled-features`): auth-email-password, sessions, tenants, users, jobs, secrets, file-provider-s3, mail-transport-smtp/inmemory, billing-foundation, cap-counter, channel-in-app, delivery, feature-toggles, legal-pages
60
+ - **Renderer** (`@cosmicdrift/kumiko-renderer`, `@cosmicdrift/kumiko-renderer-web`): schema-driven CRUD UI for React + Expo Web, override paths, list debounce, theme tokens
61
+ - **Headless** (`@cosmicdrift/kumiko-headless`): view-models for list/edit screens, locale-aware
62
+ - **Dev server** (`@cosmicdrift/kumiko-dev-server`): `runDevApp`, `runProdApp`, `kumiko-build` for production bundles (client + server), Docker-ready
63
+ - **Realtime** (`@cosmicdrift/kumiko-dispatcher-live`): SSE broadcast across tenants, Redis Pub/Sub backend
64
+ - **CLI** (`bin/kumiko.ts`): interactive dev menu, test runners, check pipeline (Biome + TypeScript + 18 guards + Vitest)
65
+
66
+ This is a pre-1.0 release — APIs may change between minor versions. Breaking changes will be documented per release.
67
+
68
+ ### Patch Changes
69
+
70
+ - Updated dependencies [59ba6d7]
71
+ - @cosmicdrift/kumiko-framework@0.1.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cosmicdrift/kumiko-headless",
3
- "version": "0.2.1",
3
+ "version": "0.2.3",
4
4
  "description": "Headless UI logic for Kumiko — Dispatcher contract, Form-Controller, View-Model, Nav-Resolver. Plattform- und React-frei; jeder Renderer (renderer, renderer-web, renderer-native, …) komponiert darauf.",
5
5
  "license": "BUSL-1.1",
6
6
  "author": "Marc Frost <marc@cosmicdriftgamestudio.com>",
@@ -22,7 +22,7 @@
22
22
  "./dispatcher": "./src/dispatcher/index.ts"
23
23
  },
24
24
  "dependencies": {
25
- "@cosmicdrift/kumiko-framework": "workspace:*",
25
+ "@cosmicdrift/kumiko-framework": "0.2.3",
26
26
  "zod": "^4.3.6"
27
27
  },
28
28
  "publishConfig": {
@@ -34,4 +34,4 @@
34
34
  "README.md",
35
35
  "LICENSE"
36
36
  ]
37
- }
37
+ }