@shuyhere/bb-agent 0.0.17 → 0.0.18
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 +23 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,28 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.0.18] - 2026-04-18
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- added `/exit` as a shared TUI slash-command alias for `/quit`, including help/menu/autocomplete coverage
|
|
15
|
+
|
|
16
|
+
### Changed
|
|
17
|
+
|
|
18
|
+
- cache metrics now explicitly follow auth mode: API-key sessions report `official` cache-hit provenance while OAuth sessions report `estimate`
|
|
19
|
+
- provider-side cache-affinity shaping is now restored for OpenAI and Anthropic baseline requests, improving cache-monitor consistency and estimate-vs-official comparisons
|
|
20
|
+
- the TUI cache monitor now renders on the footer/path line and labels cache source directly as `cache hit (official|estimate|mixed|unknown)`
|
|
21
|
+
|
|
22
|
+
### Fixed
|
|
23
|
+
|
|
24
|
+
- OAuth estimated cache-hit normalization no longer pegs changed prompts to misleading `100.0%` latest-hit readings
|
|
25
|
+
- 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
|
|
26
|
+
- clean `bb-tui` test builds no longer fail on the stale `wrap_visual_line` test-only re-export visibility issue
|
|
27
|
+
|
|
28
|
+
### Improved
|
|
29
|
+
|
|
30
|
+
- cache-monitor wording, placement, and reset behavior are now more trustworthy for manual validation across provider/auth combinations
|
|
31
|
+
|
|
10
32
|
## [0.0.17] - 2026-04-17
|
|
11
33
|
|
|
12
34
|
### Added
|
|
@@ -199,6 +221,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
199
221
|
|
|
200
222
|
- latest published package includes the post-0.0.7 startup, auth, model-default, and update-notice improvements
|
|
201
223
|
|
|
224
|
+
[0.0.18]: https://github.com/shuyhere/bb-agent/releases/tag/v0.0.18
|
|
202
225
|
[0.0.17]: https://github.com/shuyhere/bb-agent/releases/tag/v0.0.17
|
|
203
226
|
[0.0.16]: https://github.com/shuyhere/bb-agent/releases/tag/v0.0.16
|
|
204
227
|
[0.0.15]: https://github.com/shuyhere/bb-agent/releases/tag/v0.0.15
|