@nanobpm/nano-workforce 0.93.0 → 0.94.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 CHANGED
@@ -1,3 +1,10 @@
1
+ # [0.94.0](https://github.com/nanobpm/nano-workforce/compare/v0.93.0...v0.94.0) (2026-08-19)
2
+
3
+
4
+ ### Features
5
+
6
+ * **pages:** feature-runs current stage links to the process instance ([#316](https://github.com/nanobpm/nano-workforce/issues/316)) ([4984f13](https://github.com/nanobpm/nano-workforce/commit/4984f13c1a3bd101499763731843ee4807bec49e)), closes [#315](https://github.com/nanobpm/nano-workforce/issues/315) [nano-ide#347](https://github.com/nano-ide/issues/347) [nanobpm/nano-ide#348](https://github.com/nanobpm/nano-ide/issues/348) [#311](https://github.com/nanobpm/nano-workforce/issues/311) [#307](https://github.com/nanobpm/nano-workforce/issues/307)
7
+
1
8
  # [0.93.0](https://github.com/nanobpm/nano-workforce/compare/v0.92.0...v0.93.0) (2026-08-19)
2
9
 
3
10
 
@@ -18,7 +18,8 @@
18
18
  -- The backfill coalesces existing rows to `subject_key` (matching the write-time coalesce
19
19
  -- in `pollUserTasks`, which re-derives the real title in place on the next poll — a
20
20
  -- completed task's row is deleted, not migrated). Idempotent: re-running is a no-op once
21
- -- set. Numbered after the current highest prefix on origin/main (042); the runner wraps
21
+ -- set. Renumbered from 043 to 046 to resolve an apply-order prefix collision with
22
+ -- 043_pr_epic_phase.sql (both landed ~concurrently on main); the runner wraps
22
23
  -- each file in its own transaction, so this file must NOT contain BEGIN/COMMIT.
23
24
  ALTER TABLE user_tasks ADD COLUMN subject_title TEXT;
24
25
  UPDATE user_tasks SET subject_title = subject_key WHERE subject_title IS NULL OR trim(subject_title) = '';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nanobpm/nano-workforce",
3
- "version": "0.93.0",
3
+ "version": "0.94.0",
4
4
  "description": "Nano Workforce — an Agent Graph Orchestration application for Agentic SDLC: durable BPMN processes that coordinate a graph of AI agents across the software delivery lifecycle.",
5
5
  "type": "module",
6
6
  "main": "main.ts",
@@ -89,7 +89,7 @@
89
89
  "stateField": "stage_state",
90
90
  "badgeField": "attention",
91
91
  "notInPathField": "stage_skipped",
92
- "locus": { "field": "pr_key", "link": { "kind": "page", "page": "home", "keyField": "pr_key" } }
92
+ "locus": { "field": "process_key", "link": { "kind": "processExplorer", "keyField": "process_key" } }
93
93
  },
94
94
  { "field": "updated_at", "header": "Updated", "width": "9rem" }
95
95
  ],