arkgate 2.8.0 → 2.8.1
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.
- package/CHANGELOG.md +18 -0
- package/README.md +8 -0
- package/dist/index.cjs +417 -338
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +29 -9
- package/dist/index.d.ts +29 -9
- package/dist/index.js +417 -338
- package/dist/index.js.map +1 -1
- package/dist/nestjs/index.cjs +452 -373
- package/dist/nestjs/index.cjs.map +1 -1
- package/dist/nestjs/index.d.cts +1 -1
- package/dist/nestjs/index.d.ts +1 -1
- package/dist/nestjs/index.js +452 -373
- package/dist/nestjs/index.js.map +1 -1
- package/dist/runtime/index.cjs +417 -338
- package/dist/runtime/index.cjs.map +1 -1
- package/dist/runtime/index.d.cts +1 -1
- package/dist/runtime/index.d.ts +1 -1
- package/dist/runtime/index.js +417 -338
- package/dist/runtime/index.js.map +1 -1
- package/dist/{types-CP3KkwZt.d.cts → types-CSJhEOk2.d.cts} +34 -0
- package/dist/{types-CP3KkwZt.d.ts → types-CSJhEOk2.d.ts} +34 -0
- package/docs/package-surface.md +1 -1
- package/docs/production-hardening.md +11 -4
- package/package.json +1 -1
- package/server.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,24 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to ArkGate (`arkgate`; formerly `ark-runtime-kernel`) are documented here.
|
|
4
4
|
|
|
5
|
+
## 2.8.1 — 2026-07-09
|
|
6
|
+
|
|
7
|
+
Runtime honesty release (roadmap **R8–R9**): EventBus publish pipeline decomposition and
|
|
8
|
+
explicit InMemory durability stance. **No intentional CLI flag or JSON shape breaks.**
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
|
|
12
|
+
- **R8 — EventBus decomposition:** publish pipeline split into cohesive modules under
|
|
13
|
+
`src/kernel/event-bus/` (`payloadPatch`, `publishGuards`, `publishInterceptors`,
|
|
14
|
+
`observedLayerFlow`, `publishPolicy`, `publishRecording`). `EventBus.ts` is
|
|
15
|
+
orchestration + public surface only. **`createEventBus` API and enforcement order
|
|
16
|
+
unchanged.** Snapshot of subscribers still taken before policy hooks.
|
|
17
|
+
- **R9 — Runtime durability stance:** built-in stores are documented as **reference
|
|
18
|
+
InMemory-only** (not production durability) in README, `docs/production-hardening.md`,
|
|
19
|
+
`docs/package-surface.md`, and JSDoc on `OutboxStore` / `AuditStore` /
|
|
20
|
+
`ReadModelStore` / `WorkflowStore` (+ InMemory implementations). No durable adapter
|
|
21
|
+
shipped — inject your own for production.
|
|
22
|
+
|
|
5
23
|
## 2.8.0 — 2026-07-09
|
|
6
24
|
|
|
7
25
|
Co-pilot quality release (roadmap **R5–R7**): labeled eval corpus, fourth mechanical-safe kind,
|
package/README.md
CHANGED
|
@@ -231,6 +231,14 @@ in this major; prefer `arkgate/runtime` for new code.
|
|
|
231
231
|
|
|
232
232
|
NestJS: `arkgate/nestjs` (optional peer `@nestjs/common`).
|
|
233
233
|
|
|
234
|
+
### Durability stance (built-in stores)
|
|
235
|
+
|
|
236
|
+
The kernel’s default stores (`InMemoryOutboxStore`, `InMemoryAuditStore`,
|
|
237
|
+
`InMemoryReadModelStore`, `InMemoryWorkflowStore`) are **reference in-memory only**:
|
|
238
|
+
fine for tests, demos, and single-process local work — they **do not** survive restarts
|
|
239
|
+
and are **not** production durability. Implement the store interfaces (or inject your own)
|
|
240
|
+
for real systems. Details: [docs/production-hardening.md](docs/production-hardening.md).
|
|
241
|
+
|
|
234
242
|
---
|
|
235
243
|
|
|
236
244
|
## Documentation
|