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