@voltro/plugin-broadcast 0.1.1 → 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 +3 -3
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/plugin-broadcast",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Cross-replica reactivity — a pub/sub message bus (Redis / NATS / memory) that fans out app-mutation ChangeEvents to every replica behind a load balancer. ADDITIVE to inline emit: local reactivity survives a broker outage; cross-replica degrades gracefully. Closes the single-instance gap for every non-postgres dialect (postgres keeps native LISTEN/NOTIFY).",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"voltro",
|
|
@@ -32,8 +32,8 @@
|
|
|
32
32
|
"node": ">=24.0.0"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@voltro/database": "0.1.
|
|
36
|
-
"@voltro/protocol": "0.1.
|
|
35
|
+
"@voltro/database": "0.1.2",
|
|
36
|
+
"@voltro/protocol": "0.1.2"
|
|
37
37
|
},
|
|
38
38
|
"optionalDependencies": {
|
|
39
39
|
"@nats-io/transport-node": "^3.4.0",
|