@nanobpm/nano-workforce 0.164.0 → 0.165.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 +6 -0
- package/package.json +1 -1
- package/pages/overview.page.json +11 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
## [0.165.0](https://github.com/nanobpm/nano-workforce/compare/v0.164.0...v0.165.0) (2026-08-31)
|
|
2
|
+
|
|
3
|
+
### Features
|
|
4
|
+
|
|
5
|
+
* **overview:** add Dismiss row action to Active Features grid ([#644](https://github.com/nanobpm/nano-workforce/issues/644)) ([cda5962](https://github.com/nanobpm/nano-workforce/commit/cda59628d31a37faf26e3a749b6443b33f532d7d)), closes [#643](https://github.com/nanobpm/nano-workforce/issues/643)
|
|
6
|
+
|
|
1
7
|
## [0.164.0](https://github.com/nanobpm/nano-workforce/compare/v0.163.3...v0.164.0) (2026-08-31)
|
|
2
8
|
|
|
3
9
|
### Features
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nanobpm/nano-workforce",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.165.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",
|
package/pages/overview.page.json
CHANGED
|
@@ -187,6 +187,17 @@
|
|
|
187
187
|
{ "field": "delivery_label", "header": "Delivery" },
|
|
188
188
|
{ "field": "updated_at", "header": "Updated", "width": "9rem", "format": "datetime" }
|
|
189
189
|
],
|
|
190
|
+
"rowActions": [
|
|
191
|
+
{
|
|
192
|
+
"label": "Dismiss",
|
|
193
|
+
"confirm": "Tick off this finished run? It acknowledges the run as done and files it under History.",
|
|
194
|
+
"showWhenField": "stage_state",
|
|
195
|
+
"action": {
|
|
196
|
+
"path": "/app/api/actions/acknowledge-done",
|
|
197
|
+
"body": { "feature_key": "{{row.feature_key}}" }
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
],
|
|
190
201
|
"detail": {
|
|
191
202
|
"fields": [
|
|
192
203
|
{ "field": "outcome", "label": "Outcome" }
|