@shuyhere/bb-agent 0.0.17 → 0.0.19

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +39 -0
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -7,6 +7,43 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.0.19] - 2026-04-19
11
+
12
+ ### Changed
13
+
14
+ - tool expand/collapse hints now explicitly advertise mouse support again (`Click or Ctrl+Shift+O to expand/collapse`), and mouse toggles are more robust when clicking wrapped or nested transcript rows
15
+
16
+ ### Fixed
17
+
18
+ - bash timeout/cancel is now a true hard stop: after killing a timed-out or cancelled bash process, BB no longer waits forever for inherited stdout/stderr pipes to reach EOF
19
+ - pressing `Esc` during a cancellable turn/tool/local action now requests cancellation before local TUI behaviors like clearing input, jumping to bottom, or leaving transcript mode can consume the key
20
+
21
+ ### Improved
22
+
23
+ - regression coverage now includes detached-child bash timeout hangs plus focused TUI Esc-priority and click-to-expand interaction cases
24
+
25
+ ## [0.0.18] - 2026-04-18
26
+
27
+ ### Added
28
+
29
+ - added `/exit` as a shared TUI slash-command alias for `/quit`, including help/menu/autocomplete coverage
30
+
31
+ ### Changed
32
+
33
+ - cache metrics now explicitly follow auth mode: API-key sessions report `official` cache-hit provenance while OAuth sessions report `estimate`
34
+ - provider-side cache-affinity shaping is now restored for OpenAI and Anthropic baseline requests, improving cache-monitor consistency and estimate-vs-official comparisons
35
+ - the TUI cache monitor now renders on the footer/path line and labels cache source directly as `cache hit (official|estimate|mixed|unknown)`
36
+
37
+ ### Fixed
38
+
39
+ - OAuth estimated cache-hit normalization no longer pegs changed prompts to misleading `100.0%` latest-hit readings
40
+ - switching models or auth sources now resets latest-request cache state so the monitor starts cold instead of reusing stale latest-hit/source data from the previous cache domain
41
+ - clean `bb-tui` test builds no longer fail on the stale `wrap_visual_line` test-only re-export visibility issue
42
+
43
+ ### Improved
44
+
45
+ - cache-monitor wording, placement, and reset behavior are now more trustworthy for manual validation across provider/auth combinations
46
+
10
47
  ## [0.0.17] - 2026-04-17
11
48
 
12
49
  ### Added
@@ -199,6 +236,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
199
236
 
200
237
  - latest published package includes the post-0.0.7 startup, auth, model-default, and update-notice improvements
201
238
 
239
+ [0.0.19]: https://github.com/shuyhere/bb-agent/releases/tag/v0.0.19
240
+ [0.0.18]: https://github.com/shuyhere/bb-agent/releases/tag/v0.0.18
202
241
  [0.0.17]: https://github.com/shuyhere/bb-agent/releases/tag/v0.0.17
203
242
  [0.0.16]: https://github.com/shuyhere/bb-agent/releases/tag/v0.0.16
204
243
  [0.0.15]: https://github.com/shuyhere/bb-agent/releases/tag/v0.0.15
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shuyhere/bb-agent",
3
- "version": "0.0.17",
3
+ "version": "0.0.19",
4
4
  "description": "BB-Agent — a Rust-native AI coding agent for the terminal",
5
5
  "license": "MIT",
6
6
  "repository": {