@cosmicdrift/kumiko-headless 0.2.0 → 0.2.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +65 -0
  2. package/package.json +5 -5
package/CHANGELOG.md ADDED
@@ -0,0 +1,65 @@
1
+ # @cosmicdrift/kumiko-headless
2
+
3
+ ## 0.2.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 7a7da3e: Re-publish 0.2.1 → 0.2.2 mit korrekt aufgelösten cross-package-Versionen.
8
+ 0.2.1 hatte `workspace:*` als Wert in den dependencies (npm publish ohne
9
+ yarn-pack rewrite), Konsumenten bekamen "Workspace not found".
10
+
11
+ publish-with-oidc.sh nutzt jetzt `yarn pack` (rewrited workspace:\*) +
12
+ `npm publish <tarball>` (OIDC + provenance).
13
+
14
+ - Updated dependencies [7a7da3e]
15
+ - @cosmicdrift/kumiko-framework@0.2.2
16
+
17
+ ## 0.2.1
18
+
19
+ ### Patch Changes
20
+
21
+ - 48b7f6a: CI: switch publish to npm-CLI with OIDC Trusted Publishing + provenance.
22
+ No source changes — verifies the new publish path produces a verified-
23
+ provenance attestation on npmjs.com instead of token-based publish.
24
+ - Updated dependencies [48b7f6a]
25
+ - @cosmicdrift/kumiko-framework@0.2.1
26
+
27
+ ## 0.2.0
28
+
29
+ ### Minor Changes
30
+
31
+ - 6c70b6f: fix(tenant): seedTenant idempotent gegen Event-Store-Projection-Drift.
32
+
33
+ Verhindert version_conflict beim App-Boot wenn Aggregat existiert aber
34
+ Projection-Row fehlt (rebuild-drift, async-lag, manueller DB-Eingriff).
35
+
36
+ ### Patch Changes
37
+
38
+ - Updated dependencies [6c70b6f]
39
+ - @cosmicdrift/kumiko-framework@0.2.0
40
+
41
+ ## 0.1.0
42
+
43
+ ### Minor Changes
44
+
45
+ - 59ba6d7: Initial public release of Kumiko — AI-native backend builder.
46
+
47
+ What ships in 0.1.0:
48
+
49
+ - **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
50
+ - **Pipeline** (`@cosmicdrift/kumiko-framework`): `createDispatcher`, JWT auth via jose, Zod schema validation, role-based access checks, command/write/query split
51
+ - **DB** (`@cosmicdrift/kumiko-framework`): Drizzle helpers (`buildDrizzleTable`, `applyCursorQuery`), CRUD executor, Postgres dialect, optimistic locking, soft delete, multi-tenant scoping
52
+ - **Event sourcing** (`@cosmicdrift/kumiko-framework`): aggregate streams, single + multi-stream projections, event upcasters, asOf queries, archive support, AsyncDaemon-pattern dispatcher
53
+ - **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
54
+ - **Renderer** (`@cosmicdrift/kumiko-renderer`, `@cosmicdrift/kumiko-renderer-web`): schema-driven CRUD UI for React + Expo Web, override paths, list debounce, theme tokens
55
+ - **Headless** (`@cosmicdrift/kumiko-headless`): view-models for list/edit screens, locale-aware
56
+ - **Dev server** (`@cosmicdrift/kumiko-dev-server`): `runDevApp`, `runProdApp`, `kumiko-build` for production bundles (client + server), Docker-ready
57
+ - **Realtime** (`@cosmicdrift/kumiko-dispatcher-live`): SSE broadcast across tenants, Redis Pub/Sub backend
58
+ - **CLI** (`bin/kumiko.ts`): interactive dev menu, test runners, check pipeline (Biome + TypeScript + 18 guards + Vitest)
59
+
60
+ This is a pre-1.0 release — APIs may change between minor versions. Breaking changes will be documented per release.
61
+
62
+ ### Patch Changes
63
+
64
+ - Updated dependencies [59ba6d7]
65
+ - @cosmicdrift/kumiko-framework@0.1.0
package/package.json CHANGED
@@ -1,16 +1,16 @@
1
1
  {
2
2
  "name": "@cosmicdrift/kumiko-headless",
3
- "version": "0.2.0",
3
+ "version": "0.2.2",
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>",
7
7
  "repository": {
8
8
  "type": "git",
9
- "url": "git+https://github.com/cosmicdriftgamestudio/kumiko-framework.git",
9
+ "url": "git+https://github.com/CosmicDriftGameStudio/kumiko-framework.git",
10
10
  "directory": "packages/headless"
11
11
  },
12
12
  "bugs": {
13
- "url": "https://github.com/cosmicdriftgamestudio/kumiko-framework/issues"
13
+ "url": "https://github.com/CosmicDriftGameStudio/kumiko-framework/issues"
14
14
  },
15
15
  "homepage": "https://kumiko.so",
16
16
  "type": "module",
@@ -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.2",
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
+ }