@arnilo/prism-server 0.0.5 → 0.0.6

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 CHANGED
@@ -1,6 +1,8 @@
1
1
  # Changelog
2
2
 
3
- ## [Unreleased]
3
+ ## [0.0.6] - 2026-07-19
4
+
5
+ - Workflow cancellation now forwards the registered revised definition and exact authorized ownership for pre-abort hash/owner verification.
4
6
 
5
7
  ## [0.0.5] - 2026-07-16
6
8
 
package/dist/handler.js CHANGED
@@ -197,6 +197,7 @@ export function createPrismHandler(options) {
197
197
  const result = await awaitWithSignal(cancelWorkflowRun({
198
198
  workflowId: exposure.definition.id,
199
199
  runId: route.runId,
200
+ workflow: exposure.definition,
200
201
  checkpoints: exposure.checkpoints,
201
202
  ownership: authorization.ownership,
202
203
  signal: owned.signal,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arnilo/prism-server",
3
- "version": "0.0.5",
3
+ "version": "0.0.6",
4
4
  "description": "Optional framework-free Web Request-to-Response handler for explicitly selected Prism agents and workflows.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -25,8 +25,8 @@
25
25
  "pack:dry-run": "npm pack --dry-run"
26
26
  },
27
27
  "peerDependencies": {
28
- "@arnilo/prism": "0.0.5",
29
- "@arnilo/prism-workflows": "0.0.5"
28
+ "@arnilo/prism": "0.0.6",
29
+ "@arnilo/prism-workflows": "0.0.6"
30
30
  },
31
31
  "devDependencies": {
32
32
  "@arnilo/prism": "file:../..",