beads-ui 0.12.1 → 0.12.2

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 CHANGED
@@ -1,5 +1,18 @@
1
1
  # Changes
2
2
 
3
+ ## 0.12.2
4
+
5
+ - [`92b80f9`](https://github.com/mantoni/beads-ui/commit/92b80f90339a7619dc0d8f7a10046b023658004d)
6
+ fix: use 'bd comments add' so --author is accepted (#97) (Jim C)
7
+ >
8
+ > Fixes #67 and #74.
9
+ - [`bc972a2`](https://github.com/mantoni/beads-ui/commit/bc972a2af68c0ae6fcab9b6c0613a28543fea5ec)
10
+ fix(detail): request --include-dependents so children render (#94) (Nick Veenhof)
11
+ >
12
+ > Fixes #93.
13
+
14
+ _Released by gprocunier on 2026-07-10._
15
+
3
16
  ## 0.12.1
4
17
 
5
18
  - [`dee0ffa`](https://github.com/mantoni/beads-ui/commit/dee0ffac6a5635c6761a4c97e3878157f2131f6b)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "beads-ui",
3
- "version": "0.12.1",
3
+ "version": "0.12.2",
4
4
  "description": "Local UI for Beads — Collaborate on issues with your coding agent.",
5
5
  "keywords": [
6
6
  "agent",
@@ -45,7 +45,7 @@ export function mapSubscriptionToBdArgs(spec) {
45
45
  if (id.length === 0) {
46
46
  throw badRequest('Missing param: params.id');
47
47
  }
48
- return ['show', id, '--json'];
48
+ return ['show', id, '--json', '--include-dependents'];
49
49
  }
50
50
  default: {
51
51
  throw badRequest(`Unknown subscription type: ${t}`);
package/server/ws.js CHANGED
@@ -1199,7 +1199,7 @@ export async function handleMessage(ws, data) {
1199
1199
 
1200
1200
  // Get git user name for author attribution
1201
1201
  const author = await getGitUserName();
1202
- const args = ['comment', id, text.trim()];
1202
+ const args = ['comments', 'add', id, text.trim()];
1203
1203
  if (author) {
1204
1204
  args.push('--author', author);
1205
1205
  }