@cosmicdrift/kumiko-framework 0.2.1 → 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 +50 -0
  2. package/package.json +3 -3
package/CHANGELOG.md ADDED
@@ -0,0 +1,50 @@
1
+ # @cosmicdrift/kumiko-framework
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
+ ## 0.2.1
15
+
16
+ ### Patch Changes
17
+
18
+ - 48b7f6a: CI: switch publish to npm-CLI with OIDC Trusted Publishing + provenance.
19
+ No source changes — verifies the new publish path produces a verified-
20
+ provenance attestation on npmjs.com instead of token-based publish.
21
+
22
+ ## 0.2.0
23
+
24
+ ### Minor Changes
25
+
26
+ - 6c70b6f: fix(tenant): seedTenant idempotent gegen Event-Store-Projection-Drift.
27
+
28
+ Verhindert version_conflict beim App-Boot wenn Aggregat existiert aber
29
+ Projection-Row fehlt (rebuild-drift, async-lag, manueller DB-Eingriff).
30
+
31
+ ## 0.1.0
32
+
33
+ ### Minor Changes
34
+
35
+ - 59ba6d7: Initial public release of Kumiko — AI-native backend builder.
36
+
37
+ What ships in 0.1.0:
38
+
39
+ - **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
40
+ - **Pipeline** (`@cosmicdrift/kumiko-framework`): `createDispatcher`, JWT auth via jose, Zod schema validation, role-based access checks, command/write/query split
41
+ - **DB** (`@cosmicdrift/kumiko-framework`): Drizzle helpers (`buildDrizzleTable`, `applyCursorQuery`), CRUD executor, Postgres dialect, optimistic locking, soft delete, multi-tenant scoping
42
+ - **Event sourcing** (`@cosmicdrift/kumiko-framework`): aggregate streams, single + multi-stream projections, event upcasters, asOf queries, archive support, AsyncDaemon-pattern dispatcher
43
+ - **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
44
+ - **Renderer** (`@cosmicdrift/kumiko-renderer`, `@cosmicdrift/kumiko-renderer-web`): schema-driven CRUD UI for React + Expo Web, override paths, list debounce, theme tokens
45
+ - **Headless** (`@cosmicdrift/kumiko-headless`): view-models for list/edit screens, locale-aware
46
+ - **Dev server** (`@cosmicdrift/kumiko-dev-server`): `runDevApp`, `runProdApp`, `kumiko-build` for production bundles (client + server), Docker-ready
47
+ - **Realtime** (`@cosmicdrift/kumiko-dispatcher-live`): SSE broadcast across tenants, Redis Pub/Sub backend
48
+ - **CLI** (`bin/kumiko.ts`): interactive dev menu, test runners, check pipeline (Biome + TypeScript + 18 guards + Vitest)
49
+
50
+ This is a pre-1.0 release — APIs may change between minor versions. Breaking changes will be documented per release.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cosmicdrift/kumiko-framework",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "description": "Framework core — engine, pipeline, API, DB, and every other bit that makes Kumiko go.",
5
5
  "license": "BUSL-1.1",
6
6
  "author": "Marc Frost <marc@cosmicdriftgamestudio.com>",
@@ -73,7 +73,7 @@
73
73
  "zod": "^4.3.6"
74
74
  },
75
75
  "devDependencies": {
76
- "@cosmicdrift/kumiko-dispatcher-live": "workspace:*",
76
+ "@cosmicdrift/kumiko-dispatcher-live": "0.2.2",
77
77
  "@types/uuid": "^11.0.0",
78
78
  "bun-types": "^1.2.9",
79
79
  "drizzle-kit": "^0.31.0",
@@ -88,4 +88,4 @@
88
88
  "README.md",
89
89
  "LICENSE"
90
90
  ]
91
- }
91
+ }