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