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