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