@voiden/runner 2.3.0-beta.3 → 2.3.0-beta.5

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
@@ -3,6 +3,30 @@
3
3
  All notable changes to `@voiden/runner` are documented here. This package is
4
4
  versioned and released independently of the Voiden desktop app.
5
5
 
6
+ ## v2.3.0-beta.5 - 2026-08-06
7
+
8
+ ### Fixed
9
+ - `run_request`/served `/tool` results now report the actually-sent
10
+ `requestHeaders`/`requestBody` (post `{{...}}` substitution) instead of
11
+ the raw, pre-substitution block text — bumps `@voiden/executors` to
12
+ `0.1.5` for the underlying pipeline executor fix. Previously, whenever a
13
+ header or body value contained a template placeholder, the result always
14
+ echoed back the literal `{{token}}` text regardless of whether it actually
15
+ resolved correctly — the request sent was always right, only what got
16
+ reported about it was wrong. Affects every caller of the shared pipeline
17
+ executor, not just `/tool`-served requests.
18
+
19
+ ## v2.3.0-beta.4 - 2026-08-06
20
+
21
+ ### Fixed
22
+ - A served `/tool`'s `source: environment` param now actually resolves from
23
+ the project's `.voiden/env-public.yaml` / `.voiden/env-private.yaml` files
24
+ (private overrides public), not just the bare `@voiden/mcp-server` process's
25
+ own OS environment. Deliberately simplified vs. the app's full environment
26
+ system — no profiles, no hierarchical/child environments, no "active
27
+ environment" selection (nothing to select from headlessly) — only resolves
28
+ when a project has exactly one environment defined; ambiguous otherwise.
29
+
6
30
  ## v2.3.0-beta.3 - 2026-08-06
7
31
 
8
32
  ### Fixed