@voiden/runner 2.3.0-beta.12 → 2.3.0-beta.13
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 +6 -0
- package/bundled-runners/versions.json +1 -1
- package/bundled-runners/voiden-faker-runner.js +12 -5
- package/bundled-runners/voiden-mcp-tool-runner.js +3 -3
- package/bundled-runners/voiden-rest-api-runner.js +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/mcpServing.d.ts.map +1 -1
- package/dist/mcpServing.js +8 -4
- package/dist/mcpServing.js.map +1 -1
- package/dist/runner.d.ts +9 -0
- package/dist/runner.d.ts.map +1 -1
- package/dist/runner.js +44 -3
- package/dist/runner.js.map +1 -1
- package/dist/toolRegistry.d.ts +5 -2
- package/dist/toolRegistry.d.ts.map +1 -1
- package/dist/toolRegistry.js.map +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,12 @@
|
|
|
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.13 - 2026-08-21
|
|
7
|
+
|
|
8
|
+
### Fixed
|
|
9
|
+
- `linkedBlock`/`linkedFile` imports (a shared headers/auth/body block reused across requests, or a whole section imported from another file) now resolve when running headlessly — previously only the Voiden app resolved these (built on `window.electron`, React Query, and a live editor), so a request that only got its headers/auth/body from an imported block silently sent without them when run via `voiden-runner` or `voiden-mcp` — no error, just an empty header set. `@voiden/executors` bumped to `0.1.8`, which adds the resolver (`resolveLinkedBlocks`/`resolveLinkedFiles`); `originalFile` paths resolve against a new `projectRoot` (matching the Tool block's own `requestFilePath` convention — the `run` command defaults it to `process.cwd()`, `mcp`/`tool` commands pass their existing project directory through).
|
|
10
|
+
- Multipart file uploads (`multipart-table`, including `fileLink`/file attachments) and raw binary request bodies (`restFile`) are now supported when running headlessly — previously unsupported outright rather than just import-broken, even though the network layer (`@voiden/executors`' `secureRequest.ts`) already fully handled multipart `FormData` and binary uploads. Fixed upstream in `plugin-voiden-rest-api`'s `runner.ts` (now reuses the app's own `requestBuilder.ts` body-building logic instead of the headless parser only ever handling json/xml/yml bodies), re-bundled here.
|
|
11
|
+
|
|
6
12
|
## v2.3.0-beta.8 - 2026-08-11
|
|
7
13
|
|
|
8
14
|
### Fixed
|