@voiden/runner 2.3.0-beta.4 → 2.3.0-beta.6

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,27 @@
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.6 - 2026-08-07
7
+
8
+ ### Added
9
+ - `source: environment` toolparams can now pin their own `envProfile`/`envName`, resolving that exact profile/environment regardless of how many the project has — previously this only ever auto-resolved when the project had exactly one environment, and silently resolved nothing otherwise. Params without either field keep the old single-environment auto-detect behavior, so existing tools need no changes.
10
+
11
+ ### Fixed
12
+ - A tool's verification requests now see the same environment-resolved values a real agent call would — `source: environment` params were previously only resolved for actual tool calls, never for verification, so any tool using one would always fail verification (and get withdrawn) even though the tool itself worked fine when called directly.
13
+
14
+ ## v2.3.0-beta.5 - 2026-08-06
15
+
16
+ ### Fixed
17
+ - `run_request`/served `/tool` results now report the actually-sent
18
+ `requestHeaders`/`requestBody` (post `{{...}}` substitution) instead of
19
+ the raw, pre-substitution block text — bumps `@voiden/executors` to
20
+ `0.1.5` for the underlying pipeline executor fix. Previously, whenever a
21
+ header or body value contained a template placeholder, the result always
22
+ echoed back the literal `{{token}}` text regardless of whether it actually
23
+ resolved correctly — the request sent was always right, only what got
24
+ reported about it was wrong. Affects every caller of the shared pipeline
25
+ executor, not just `/tool`-served requests.
26
+
6
27
  ## v2.3.0-beta.4 - 2026-08-06
7
28
 
8
29
  ### Fixed