@oh-my-pi-zen/pi-coding-agent 16.3.6-zen.2 → 16.3.6-zen.3

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 CHANGED
@@ -2,6 +2,20 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
+ ## [16.3.6-zen.3] - 2026-07-04
6
+
7
+ ### Added
8
+
9
+ - Added ordered model role chains: comma-separated `modelRoles.<role>` entries now act as provider fallback chains, and the model selector shows/edit them with zero-based badges like `ROLE#0`, `ROLE#1`, etc.
10
+ - Added `statusLine.segmentOptions.model.showProvider` so custom-provider model names can render as `provider/Model Name` in the status line.
11
+ - Added `anysearch` web search provider, supporting both credentials-based and anonymous MCP search fallbacks.
12
+
13
+ ### Fixed
14
+
15
+ - Fixed `omitThinking` settings propagation so settings-aware streams request hidden thinking summaries when users explicitly enable the option.
16
+ - Fixed Zen prerelease builds checking the upstream `@oh-my-pi-zen/pi-coding-agent` stable channel and falsely reporting `16.3.6` as newer than `16.3.6-zen.N`.
17
+ - Fixed the model selector offering `Add ROLE fallback` for a model that is already present in that role's ordered fallback chain.
18
+
5
19
  ## [16.3.6] - 2026-07-04
6
20
 
7
21
  ### Changed
@@ -19,11 +33,6 @@
19
33
  - Fixed turn-ending provider errors rendering with a doubled blank gap above the `Error:` block (caller and error block each added a spacer).
20
34
  - Fixed the write tool renderer crashing when persisted runtime content is a truthy non-string value; rendering now coerces display content before Windows CR normalization. ([#4495](https://github.com/cagedbird043/oh-my-pi-zen/issues/4495))
21
35
  - Fixed cmux-backend `browser({action:"run"})` calls crashing the entire process with an unhandled rejection when the tab was released mid-run (e.g. a sibling subagent calling `browser({action:"close", all:true})` or a session-scoped tab reap). `runInTabWithSnapshot` in `tab-supervisor.ts` creates a `Promise.withResolvers()` triple so `releaseTab` can signal in-flight runs, but the cmux branch used to await `runCmuxCode(...)` directly and never awaited the local promise. When `releaseTab` rejected that orphaned promise ("Tab ... was closed"), Bun surfaced it as an unhandled rejection and the top-level handler tore the whole session down, killing every other tab and subagent sharing it. Both backends now await the same `promise` (so `pending.reject` always has an attached handler AND the caller sees `Tab "..." was closed` immediately instead of blocking to the run's timeout), and a new `pending.closeAc` is composed into the cmux run's abort signal so `wait(...)`, in-flight cmux socket calls, and the facade proxies unwind promptly when the tab is closed rather than leaking to their own timeout ([#4499](https://github.com/cagedbird043/oh-my-pi-zen/issues/4499)).
22
- - Fixed `omitThinking` settings propagation so settings-aware streams request hidden thinking summaries when users explicitly enable the option.
23
-
24
- ### Added
25
-
26
- - Added `anysearch` web search provider, supporting both credentials-based and anonymous MCP search fallbacks.
27
36
 
28
37
  ## [16.3.5] - 2026-07-04
29
38