@fabricorg/platform-host 0.7.0 → 1.0.0
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 +20 -0
- package/README.md +19 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @fabricorg/platform-host
|
|
2
2
|
|
|
3
|
+
## 1.0.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- fdd3e69: Add provider-neutral external mutation footprints, delegated principals, enforceable obligations,
|
|
8
|
+
execution attestations, and reconciliation evidence with durable host-store support.
|
|
9
|
+
- 714ad06: Add enforceable Fabric-family compatibility controls and durable runtime contract-version evidence.
|
|
10
|
+
- 82aa9c8: Add parameter-aware execution-time authorization, opaque durable admission bindings, and an
|
|
11
|
+
application-bound PostgreSQL unit of work for atomic domain/event persistence and recoverable
|
|
12
|
+
after-adapter finalization.
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- Updated dependencies [bc7d3ab]
|
|
17
|
+
- Updated dependencies [fdd3e69]
|
|
18
|
+
- Updated dependencies [714ad06]
|
|
19
|
+
- Updated dependencies [43c5770]
|
|
20
|
+
- Updated dependencies [986636b]
|
|
21
|
+
- @fabricorg/platform@0.10.0
|
|
22
|
+
|
|
3
23
|
## 0.7.0 — 2026-07-27
|
|
4
24
|
|
|
5
25
|
- Add parameter-aware execution authorization immediately before policies and mutation execution,
|
package/README.md
CHANGED
|
@@ -6,6 +6,20 @@ The canonical host for the `@fabricorg/platform` mutation pipeline.
|
|
|
6
6
|
pnpm add @fabricorg/platform@^0.9.0 @fabricorg/platform-host@^0.7.0
|
|
7
7
|
```
|
|
8
8
|
|
|
9
|
+
## AI agent integration boundary
|
|
10
|
+
|
|
11
|
+
Application and vertical owners install this package. Hermes, Fabric Harness, and other external agent
|
|
12
|
+
runtimes do not import Platform Host merely to call a deployed application. They connect to the
|
|
13
|
+
application's authenticated REST or MCP gateway, discover only the actions allowed by their
|
|
14
|
+
registration, and submit stable idempotent commands. The gateway derives tenant and actor identity and
|
|
15
|
+
calls `submitAction()`; an agent must never call handlers, adapters, workflow internals, or database
|
|
16
|
+
writes directly.
|
|
17
|
+
|
|
18
|
+
See the [Platform Host 0.7 agent integration
|
|
19
|
+
guide](https://platform.fabric.pro/docs/platform/reference/platform-host) for application wiring,
|
|
20
|
+
execution-time authorization, the PostgreSQL transaction binder, recovery semantics, and the external
|
|
21
|
+
gateway contract.
|
|
22
|
+
|
|
9
23
|
Vertical packages register `FabricModule` definitions. Host applications provide tenant authorization,
|
|
10
24
|
module entitlements, persistence, projections, and an optional durable dispatcher. The package owns the
|
|
11
25
|
ordering and lifecycle invariant:
|
|
@@ -64,6 +78,11 @@ When `authorizeExecution` is absent, the Host reuses `authorize` at the executio
|
|
|
64
78
|
completed idempotent replay returns its existing result without creating or executing a new
|
|
65
79
|
mutation.
|
|
66
80
|
|
|
81
|
+
External gateways should persist a compact admission record bound to the tenant, registration, actor,
|
|
82
|
+
action, canonical parameter hash, resource scope, and expiry, then pass its opaque non-secret identifier
|
|
83
|
+
as `authorizationBindingId` to `submitAction()`. Credentials and signed principal proofs do not belong
|
|
84
|
+
in action parameters or workflow history.
|
|
85
|
+
|
|
67
86
|
## Atomic mutation unit of work
|
|
68
87
|
|
|
69
88
|
Production stores can implement `AtomicMutationPlatformHostStore.transactionWithEvents`. The
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fabricorg/platform-host",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"description": "Canonical governed mutation host for @fabricorg/platform: durable invocation, policy, state-machine, handler, event, and adapter orchestration behind persistence ports.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"fabric",
|
|
@@ -43,14 +43,14 @@
|
|
|
43
43
|
"LICENSE"
|
|
44
44
|
],
|
|
45
45
|
"peerDependencies": {
|
|
46
|
-
"@fabricorg/platform": "^0.
|
|
46
|
+
"@fabricorg/platform": "^0.10.0"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
49
|
"@types/node": "^22.10.0",
|
|
50
50
|
"tsup": "^8.5.0",
|
|
51
51
|
"typescript": "^5.7.3",
|
|
52
52
|
"vitest": "^4.1.5",
|
|
53
|
-
"@fabricorg/platform": "0.
|
|
53
|
+
"@fabricorg/platform": "0.10.0"
|
|
54
54
|
},
|
|
55
55
|
"engines": {
|
|
56
56
|
"node": ">=20"
|