@voiden/runner 2.3.0-beta.2 → 2.3.0-beta.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 +15 -0
- package/bundled-runners/voiden-mcp-tool-runner.js +69 -69
- package/dist/runner.d.ts.map +1 -1
- package/dist/runner.js +7 -2
- package/dist/runner.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,21 @@
|
|
|
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.3 - 2026-08-06
|
|
7
|
+
|
|
8
|
+
### Fixed
|
|
9
|
+
- A verify entry (or a tool's own home section) targeting a file with no
|
|
10
|
+
`request-separator` blocks — i.e. a file that's just one request, with no
|
|
11
|
+
real "sections" to disambiguate between — no longer requires its
|
|
12
|
+
`sectionLabel` to exactly match anything. Previously an unlabeled first
|
|
13
|
+
section's real label (`undefined`, from `parseVoidFileSections()`) never
|
|
14
|
+
matched a saved label like `"Request 1"`, so any tool verifying against
|
|
15
|
+
such a file was incorrectly excluded as `missing-section` even though the
|
|
16
|
+
target was unambiguous. `runVoidFile()`, and both the headless and
|
|
17
|
+
Electron-app tool-capability implementations, now treat a single-section
|
|
18
|
+
file as always resolving to its one request regardless of what
|
|
19
|
+
`sectionLabel` (or none) was given.
|
|
20
|
+
|
|
6
21
|
## v2.3.0-beta.2 - 2026-08-06
|
|
7
22
|
|
|
8
23
|
Published out of lockstep with the desktop app (still `2.3.0-beta.1`) — this
|