@byollm/relay 0.1.0-alpha.68 → 0.1.0-alpha.69
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/README.md +4 -4
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
> [!WARNING]
|
|
2
|
-
> **Alpha (`0.1.0-alpha.
|
|
2
|
+
> **Alpha (`0.1.0-alpha.69`) — under active development. Don't use this yet.**
|
|
3
3
|
>
|
|
4
4
|
> This is a walking skeleton. It routes real jobs between real daemons and real
|
|
5
5
|
> sites, and it is the fixture byollm_009 freezes against — but it keeps its
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
> packages published and `@byollm/server` did not: a Sigstore
|
|
73
73
|
> transparency-log 409 on its provenance attestation. The workflow's
|
|
74
74
|
> "already published" guard correctly refuses to resume a partial publish,
|
|
75
|
-
> so `0.1.0-alpha.
|
|
75
|
+
> so `0.1.0-alpha.69` is that release, whole.
|
|
76
76
|
>
|
|
77
77
|
> If you run the Supabase adapter, `alpha.21` needs
|
|
78
78
|
> `20260819010000_completed_by_lease_id.sql`: alpha.19 shipped §3.6's
|
|
@@ -183,7 +183,7 @@ daemons pin at pairing, verified against the `sites` half of the projection.
|
|
|
183
183
|
Nothing here trusts a `siteId` in a body or a query string.
|
|
184
184
|
|
|
185
185
|
That is newer than the rest of this package. The site plane took the caller's
|
|
186
|
-
word for who it was until `0.1.0-alpha.
|
|
186
|
+
word for who it was until `0.1.0-alpha.69`, which on a relay reachable from the
|
|
187
187
|
internet is an open enqueue endpoint into consenting users' devices and an
|
|
188
188
|
open read of who is online. It was blind the whole time — nothing could open a
|
|
189
189
|
payload — and blind is not the same as safe.
|
|
@@ -191,7 +191,7 @@ payload — and blind is not the same as safe.
|
|
|
191
191
|
If you are running this: the site plane is authenticated but this is still a
|
|
192
192
|
single-tenant relay with in-memory state. One site, one replica.
|
|
193
193
|
|
|
194
|
-
## Breaking in `0.1.0-alpha.
|
|
194
|
+
## Breaking in `0.1.0-alpha.69`: `RelayState` is async
|
|
195
195
|
|
|
196
196
|
Every method on `RelayState` now returns a `Promise`, and `Relay.sweep()` and
|
|
197
197
|
`debugPage()` with it. `RelayState.requeue` is private — it was only ever a
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@byollm/relay",
|
|
3
|
-
"version": "0.1.0-alpha.
|
|
3
|
+
"version": "0.1.0-alpha.69",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "The reference relay: routes sealed byollm jobs between sites and daemons, holding no decryption keys by construction.",
|
|
6
6
|
"license": "MIT",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
],
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"zod": "^4.1.13",
|
|
34
|
-
"@byollm/protocol": "0.1.0-alpha.
|
|
34
|
+
"@byollm/protocol": "0.1.0-alpha.69"
|
|
35
35
|
},
|
|
36
36
|
"publishConfig": {
|
|
37
37
|
"access": "public"
|
|
@@ -39,10 +39,10 @@
|
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@supabase/supabase-js": "^2.112.2",
|
|
41
41
|
"vitest": "^4.1.10",
|
|
42
|
-
"@byollm/conformance": "0.1.0-alpha.
|
|
43
|
-
"@byollm/
|
|
44
|
-
"@byollm/
|
|
45
|
-
"byollm": "0.1.0-alpha.
|
|
42
|
+
"@byollm/conformance": "0.1.0-alpha.69",
|
|
43
|
+
"@byollm/control-plane": "0.1.0-alpha.69",
|
|
44
|
+
"@byollm/server": "0.1.0-alpha.69",
|
|
45
|
+
"byollm": "0.1.0-alpha.69"
|
|
46
46
|
},
|
|
47
47
|
"peerDependencies": {
|
|
48
48
|
"vitest": ">=3"
|