create-kumiko-app 0.4.225 → 0.4.227

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.
@@ -64,6 +64,10 @@
64
64
  "secrets": [],
65
65
  "writeHandlers": [
66
66
  "auth-email-password:write:change-password",
67
+ "auth-email-password:write:invite-accept",
68
+ "auth-email-password:write:invite-accept-with-login",
69
+ "auth-email-password:write:invite-create",
70
+ "auth-email-password:write:invite-signup-complete",
67
71
  "auth-email-password:write:login",
68
72
  "auth-email-password:write:logout",
69
73
  "auth-email-password:write:signup-confirm",
@@ -1133,7 +1137,7 @@
1133
1137
  },
1134
1138
  {
1135
1139
  "name": "jobs",
1136
- "description": "Persistence and operator tooling for background jobs registered via `r.job(...)`. Every job execution writes directly into `store_job_runs` (current status + duration) and `store_job_run_logs` (per-line log rows) from the BullMQ callbacks — no event stream in between (#2243). A daily `retention-cleanup` job deletes runs (and their logs) older than `retentionDays`. Exposes `jobs:write:trigger` (manual run) and `jobs:write:retry` (operator retry of a failed run), plus `jobs:query:list`, `jobs:query:details`, and `jobs:query:catalog` (manual jobs) for the operator UI.",
1140
+ "description": "Persistence and operator tooling for background jobs registered via `r.job(...)`. Every job execution writes directly into `store_job_runs` (current status + duration) and `store_job_run_logs` (per-line log rows) from the BullMQ callbacks — no event stream in between (#2243). A daily `retention-cleanup` job deletes runs (and their logs) older than `retentionDays`; an hourly `stale-run-sweep` job marks runs stuck at status `running` past `staleRunTimeoutHours` as `failed` (#2246 — a crashed worker never fires the completion callback, so nothing else ever revisits the row). Exposes `jobs:write:trigger` (manual run) and `jobs:write:retry` (operator retry of a failed run), plus `jobs:query:list`, `jobs:query:details`, and `jobs:query:catalog` (manual jobs) for the operator UI.",
1137
1141
  "toggleableDefault": null,
1138
1142
  "requires": [],
1139
1143
  "optionalRequires": [],
@@ -1772,7 +1776,7 @@
1772
1776
  },
1773
1777
  {
1774
1778
  "name": "secrets",
1775
- "description": "Stores arbitrary per-tenant secrets (API keys, tokens, credentials) encrypted at rest using AES-256 with a KEK loaded from `KUMIKO_SECRETS_MASTER_KEY_V1` (and successive versions for rotation). Read a secret in handlers via `ctx.secrets.get(tenantId, handle)`, which automatically appends a `tenantSecretRead` audit event so every access is traceable. A `rotate` job re-encrypts all envelopes after a KEK version bump.",
1779
+ "description": "Stores arbitrary per-tenant secrets (API keys, tokens, credentials) encrypted at rest using AES-256 with a KEK loaded from `KUMIKO_SECRETS_MASTER_KEY_V1` (and successive versions for rotation). Read a secret in handlers via `ctx.secrets.get(tenantId, handle)`, which automatically appends a `tenantSecretRead` audit event so every access is traceable. A `rotate` job re-encrypts all envelopes after a KEK version bump. The `set`/`delete`/`list` handlers share one access rule — default { roles: [\"TenantAdmin\"] }; adopt the host's role vocabulary with createSecretsFeature({ roles }) or open it to every authenticated tenant user with { access: { openToAll: true } } (larger blast radius: any tenant member can then read secret previews and write/delete secrets, not just admins).",
1776
1780
  "toggleableDefault": null,
1777
1781
  "requires": [],
1778
1782
  "optionalRequires": [],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-kumiko-app",
3
- "version": "0.4.225",
3
+ "version": "0.4.227",
4
4
  "description": "`bun create kumiko-app <name>` — scaffold a new Kumiko app with an interactive feature picker.",
5
5
  "license": "BUSL-1.1",
6
6
  "author": "Marc Frost <marc@cosmicdriftgamestudio.com>",
@@ -27,9 +27,9 @@
27
27
  }
28
28
  },
29
29
  "dependencies": {
30
- "@cosmicdrift/kumiko-dev-server": "0.210.0",
31
- "@cosmicdrift/kumiko-framework": "0.210.0",
32
- "@cosmicdrift/kumiko-server-runtime": "0.210.0",
30
+ "@cosmicdrift/kumiko-dev-server": "0.212.0",
31
+ "@cosmicdrift/kumiko-framework": "0.212.0",
32
+ "@cosmicdrift/kumiko-server-runtime": "0.212.0",
33
33
  "@inquirer/core": "^10.0.0",
34
34
  "@inquirer/prompts": "^7.4.0"
35
35
  },