github-issue-tower-defence-management 1.160.0 → 1.161.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 +12 -0
- package/README.md +1 -1
- package/bin/adapter/entry-points/console/ui-dist/assets/{index-DT98Xk6Y.js → index-CbEryCNT.js} +5 -5
- package/bin/adapter/entry-points/console/ui-dist/assets/{index-BbUBeonj.css → index-U8I8ESZj.css} +1 -1
- package/bin/adapter/entry-points/console/ui-dist/index.html +2 -2
- package/bin/domain/entities/WorkflowStatus.js +5 -1
- package/bin/domain/entities/WorkflowStatus.js.map +1 -1
- package/bin/domain/usecases/console/GenerateConsoleListsUseCase.js +3 -2
- package/bin/domain/usecases/console/GenerateConsoleListsUseCase.js.map +1 -1
- package/package.json +1 -1
- package/src/adapter/entry-points/console/ui/src/features/console/components/content/ConsoleMermaidDiagram.test.tsx +37 -1
- package/src/adapter/entry-points/console/ui/src/features/console/components/content/ConsoleMermaidDiagram.tsx +20 -1
- package/src/adapter/entry-points/console/ui/src/features/console/components/content/ConsoleMermaidDiagramModalScreen.stories.tsx +27 -0
- package/src/adapter/entry-points/console/ui/src/features/console/components/content/ConsoleMermaidDiagramModalScreen.test.tsx +85 -0
- package/src/adapter/entry-points/console/ui/src/features/console/components/content/ConsoleMermaidDiagramModalScreen.tsx +97 -0
- package/src/adapter/entry-points/console/ui/src/features/console/lib/mermaidZoom.test.ts +88 -0
- package/src/adapter/entry-points/console/ui/src/features/console/lib/mermaidZoom.ts +34 -0
- package/src/adapter/entry-points/console/ui/src/index.css +65 -0
- package/src/adapter/entry-points/console/ui-dist/assets/{index-DT98Xk6Y.js → index-CbEryCNT.js} +5 -5
- package/src/adapter/entry-points/console/ui-dist/assets/{index-BbUBeonj.css → index-U8I8ESZj.css} +1 -1
- package/src/adapter/entry-points/console/ui-dist/index.html +2 -2
- package/src/domain/entities/WorkflowStatus.ts +5 -0
- package/src/domain/usecases/console/GenerateConsoleListsUseCase.test.ts +31 -0
- package/src/domain/usecases/console/GenerateConsoleListsUseCase.ts +8 -2
- package/types/domain/entities/WorkflowStatus.d.ts +1 -0
- package/types/domain/entities/WorkflowStatus.d.ts.map +1 -1
- package/types/domain/usecases/console/GenerateConsoleListsUseCase.d.ts +1 -0
- package/types/domain/usecases/console/GenerateConsoleListsUseCase.d.ts.map +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# [1.161.0](https://github.com/HiromiShikata/npm-cli-github-issue-tower-defence-management/compare/v1.160.0...v1.161.0) (2026-08-18)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **console:** keep only pre-work items on the triage tab ([#1603](https://github.com/HiromiShikata/npm-cli-github-issue-tower-defence-management/issues/1603)) ([3c57e5d](https://github.com/HiromiShikata/npm-cli-github-issue-tower-defence-management/commit/3c57e5dcf41315584601b6ff9325bba8e7ab7ec8))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **console:** let the reader enlarge and zoom a mermaid diagram ([#1592](https://github.com/HiromiShikata/npm-cli-github-issue-tower-defence-management/issues/1592)) ([44be0be](https://github.com/HiromiShikata/npm-cli-github-issue-tower-defence-management/commit/44be0befa0805b88f6b198fa6b1ae1c0537be4c2))
|
|
12
|
+
|
|
1
13
|
# [1.160.0](https://github.com/HiromiShikata/npm-cli-github-issue-tower-defence-management/compare/v1.159.0...v1.160.0) (2026-08-17)
|
|
2
14
|
|
|
3
15
|
|
package/README.md
CHANGED
|
@@ -524,7 +524,7 @@ Most tabs apply a common actionable filter to the project's issues: the issue is
|
|
|
524
524
|
- `failed-preparation`: status equals `Failed Preparation` (exact case)
|
|
525
525
|
- `todo-by-human`: status equals `Todo by human` or the legacy value `Todo` (exact case)
|
|
526
526
|
- `todo-by-agent`: status equals `Todo by agent` (exact case)
|
|
527
|
-
- `triage`: story name contains `no story` (case-insensitive),
|
|
527
|
+
- `triage`: story name contains `no story` (case-insensitive), keeping only issues whose status is unset or equals `Unread` or `Awaiting Workspace` (case-insensitive), because every later status means work on the issue has already started and no triage decision is left
|
|
528
528
|
|
|
529
529
|
The `workflow-blocker` tab is the one exception to the common actionable filter: it lists every issue whose story name equals the configured `workflowBlockerStoryName` (case-insensitive) and whose issue state is not closed, regardless of its status, next action date, next action hour, or depended issue URLs. When `workflowBlockerStoryName` is unset, the `workflow-blocker` list is always empty.
|
|
530
530
|
|