@voiden/runner 2.3.0-beta.4 → 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.
Files changed (2) hide show
  1. package/CHANGELOG.md +13 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -3,6 +3,19 @@
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
+
6
19
  ## v2.3.0-beta.4 - 2026-08-06
7
20
 
8
21
  ### Fixed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@voiden/runner",
3
- "version": "2.3.0-beta.4",
3
+ "version": "2.3.0-beta.5",
4
4
  "description": "CLI runner for .void files — execute REST, WebSocket, and gRPC requests headlessly",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -43,7 +43,7 @@
43
43
  "dependencies": {
44
44
  "@grpc/proto-loader": "^0.7.13",
45
45
  "@modelcontextprotocol/sdk": "^1.29.0",
46
- "@voiden/executors": "0.1.4",
46
+ "@voiden/executors": "0.1.5",
47
47
  "@voiden/sdk": "*",
48
48
  "chalk": "^5.3.0",
49
49
  "commander": "^12.0.0",