beads-ui 0.11.0 → 0.11.1
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/CHANGES.md +9 -0
- package/package.json +1 -1
- package/server/list-adapters.js +11 -3
package/CHANGES.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Changes
|
|
2
2
|
|
|
3
|
+
## 0.11.1
|
|
4
|
+
|
|
5
|
+
- [`0fc2df7`](https://github.com/mantoni/beads-ui/commit/0fc2df7cbaeb6f0500900ce2bf87e6b3fa8e8ac0)
|
|
6
|
+
style: fix prettier formatting in list-adapters test (Leon Letto)
|
|
7
|
+
- [`e00ddfc`](https://github.com/mantoni/beads-ui/commit/e00ddfc9b9d421dc31b7d7703f4bfbc9790546f8)
|
|
8
|
+
fix: add --tree=false to bd list calls for bd 0.59.0 compat (Leon Letto)
|
|
9
|
+
|
|
10
|
+
_Released by [Maximilian Antoni](https://github.com/mantoni) on 2026-03-07._
|
|
11
|
+
|
|
3
12
|
## 0.11.0
|
|
4
13
|
|
|
5
14
|
- [`fc00b87`](https://github.com/mantoni/beads-ui/commit/fc00b87cfd1b6600a9b9088a9f62c2f6e8fc919e)
|
package/package.json
CHANGED
package/server/list-adapters.js
CHANGED
|
@@ -14,7 +14,7 @@ export function mapSubscriptionToBdArgs(spec) {
|
|
|
14
14
|
const t = String(spec.type);
|
|
15
15
|
switch (t) {
|
|
16
16
|
case 'all-issues': {
|
|
17
|
-
return ['list', '--json'];
|
|
17
|
+
return ['list', '--json', '--tree=false'];
|
|
18
18
|
}
|
|
19
19
|
case 'epics': {
|
|
20
20
|
return ['epic', 'status', '--json'];
|
|
@@ -26,10 +26,18 @@ export function mapSubscriptionToBdArgs(spec) {
|
|
|
26
26
|
return ['ready', '--limit', '1000', '--json'];
|
|
27
27
|
}
|
|
28
28
|
case 'in-progress-issues': {
|
|
29
|
-
return ['list', '--json', '--status', 'in_progress'];
|
|
29
|
+
return ['list', '--json', '--tree=false', '--status', 'in_progress'];
|
|
30
30
|
}
|
|
31
31
|
case 'closed-issues': {
|
|
32
|
-
return [
|
|
32
|
+
return [
|
|
33
|
+
'list',
|
|
34
|
+
'--json',
|
|
35
|
+
'--tree=false',
|
|
36
|
+
'--status',
|
|
37
|
+
'closed',
|
|
38
|
+
'--limit',
|
|
39
|
+
'1000'
|
|
40
|
+
];
|
|
33
41
|
}
|
|
34
42
|
case 'issue-detail': {
|
|
35
43
|
const p = spec.params || {};
|