@voltro/protocol 0.1.0 → 0.1.2
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 +19 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -39,6 +39,25 @@ _Changes staged for the next release accumulate here (rolled up from
|
|
|
39
39
|
|
|
40
40
|
---
|
|
41
41
|
|
|
42
|
+
## [0.1.1] — 2026-07-15
|
|
43
|
+
|
|
44
|
+
### Fixed
|
|
45
|
+
|
|
46
|
+
- **@voltro/ai** — `AgentDescriptor` / `AgentExecutor` no longer carry a `unique
|
|
47
|
+
symbol` type brand (only the portable string `_brand`). A d.ts bundler
|
|
48
|
+
duplicates a `unique symbol` per entry point, so a descriptor built with
|
|
49
|
+
`defineAgent` (from the browser-safe `@voltro/ai/agent` subpath) was not
|
|
50
|
+
assignable to `defineAgentExecutor` (from the main entry) when the package is
|
|
51
|
+
consumed from npm — the canonical agent pattern failed to typecheck for every
|
|
52
|
+
published-package consumer. Type-only; the runtime brand was never read.
|
|
53
|
+
- **@voltro/cli** — the `voltro` bin resolves the `tsx` loader relative to
|
|
54
|
+
`@voltro/cli` (via `import.meta.resolve`) instead of a bare `--import tsx`
|
|
55
|
+
resolved from the consuming app's CWD, so a standalone (non-monorepo) install
|
|
56
|
+
no longer fails with "Cannot find package 'tsx'" at `voltro dev` / `voltro
|
|
57
|
+
build`.
|
|
58
|
+
|
|
59
|
+
---
|
|
60
|
+
|
|
42
61
|
## [0.1.0]
|
|
43
62
|
|
|
44
63
|
Initial pre-release baseline. This is the starting point the changelog tracks
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@voltro/protocol",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "The Voltro wire + plugin contract — defineQuery/Mutation/Action/Stream, definePlugin, sessions / JWT / API-keys, and the RPC protocol.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"voltro",
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
},
|
|
54
54
|
"dependencies": {
|
|
55
55
|
"@effect/sql": "^0.51.1",
|
|
56
|
-
"@voltro/database": "0.1.
|
|
56
|
+
"@voltro/database": "0.1.2",
|
|
57
57
|
"jose": "^6.2.3"
|
|
58
58
|
},
|
|
59
59
|
"peerDependencies": {
|