p-backlog 0.3.0 → 0.4.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 +24 -0
- package/dist/cli.js +363 -103
- package/dist/web/assets/{ChartTooltip-DwQKHXkN.js → ChartTooltip-DWaDSRan.js} +3 -3
- package/dist/web/assets/CodeTab-C87LaJFD.js +1 -0
- package/dist/web/assets/{CostTab-B21EB-7P.js → CostTab-D4ByOnHX.js} +1 -1
- package/dist/web/assets/EffectTab-Dq06ghtZ.js +1 -0
- package/dist/web/assets/Figure-BC1eGh3_.js +1 -0
- package/dist/web/assets/OverviewTab-BBmohHJR.js +1 -0
- package/dist/web/assets/QualityTab-Rb7zRcGH.js +1 -0
- package/dist/web/assets/StatsPage-Dtyc1gAc.js +1 -0
- package/dist/web/assets/StatsTabState-Br-8FgKd.js +1 -0
- package/dist/web/assets/{StatsTable-Bd3vAxKU.js → StatsTable-BXG0IS8p.js} +1 -1
- package/dist/web/assets/UnavailableRepos-KiTvsm1X.js +1 -0
- package/dist/web/assets/cx-CNNf0q6V.js +58 -0
- package/dist/web/assets/index-AJ1Qzly1.js +2 -0
- package/dist/web/assets/start-BGXTwsB0.js +38 -0
- package/dist/web/assets/{index-CAKUAPJF.css → start-Cy19NMke.css} +1 -1
- package/dist/web/assets/{value-dot-kiMizZCu.js → value-dot-W-8PsGpd.js} +1 -1
- package/dist/web/index.html +1 -5
- package/package.json +1 -1
- package/skill/backlog/SKILL.md +3 -2
- package/skill/backlog-en/SKILL.md +3 -2
- package/dist/web/assets/CodeTab-BGxsIZMH.js +0 -1
- package/dist/web/assets/EffectTab-97OFZkWY.js +0 -1
- package/dist/web/assets/Figure-CiIqHKnb.js +0 -1
- package/dist/web/assets/OverviewTab-X_g8WfUl.js +0 -1
- package/dist/web/assets/QualityTab-DYnFz37G.js +0 -1
- package/dist/web/assets/StatsPage-D9gJHHQg.js +0 -1
- package/dist/web/assets/StatsTabState-DbuUIt-D.js +0 -1
- package/dist/web/assets/UnavailableRepos-D2iehY7u.js +0 -1
- package/dist/web/assets/cx-BZTW4xgb.js +0 -58
- package/dist/web/assets/index-BrkoyuWi.js +0 -38
- package/dist/web/assets/paths-ZO6w2vYU.js +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.4.0
|
|
4
|
+
|
|
5
|
+
Bulk triage in the web UI:
|
|
6
|
+
|
|
7
|
+
- Select tasks with checkboxes (row checkboxes, "select all visible", Shift+click or Shift+Space for a range, Space on a
|
|
8
|
+
row's link) and act on all of them at once: close as obsolete with a shared reason, change priority, or move to an epic /
|
|
9
|
+
out of an epic. Alt+A (⌥A on macOS) jumps to the actions.
|
|
10
|
+
- After an action a notice shows the result ("Closed 11 of 12", skipped tasks as links with the reason) and an **Undo**
|
|
11
|
+
button that restores status, priority and epic for tasks nobody changed since. An undone close does not count in the
|
|
12
|
+
statistics.
|
|
13
|
+
- The server applies a batch task by task under the same file locks and version checks as single edits
|
|
14
|
+
(`POST /api/tasks/batch`); a task locked by another process or changed on disk is skipped, the rest are applied.
|
|
15
|
+
Selections over 500 tasks are sent in parts.
|
|
16
|
+
|
|
17
|
+
Other changes:
|
|
18
|
+
|
|
19
|
+
- An epic closed automatically because all its tasks were done reopens when one of its tasks is open again (edit, undo,
|
|
20
|
+
a new task in it, `check`, cleanup). `check --json` reports it as the `epic-reopened` fix. A manually closed epic stays
|
|
21
|
+
closed.
|
|
22
|
+
- An epic from another project is rejected on every write path (web, CLI, bulk action), with a hint to clear the epic.
|
|
23
|
+
- The web UI refetches the task list once after your own edit instead of twice; `/api/projects` now returns
|
|
24
|
+
`{ projects, revision }` — reload browser tabs opened before the update.
|
|
25
|
+
- The web UI runs without `eval` (zod in jitless mode), so it has no Content Security Policy violations.
|
|
26
|
+
|
|
3
27
|
## 0.3.0
|
|
4
28
|
|
|
5
29
|
CLI contract changes (scripts that parse output or exit codes may need updating):
|