@byollm/relay 0.1.0-alpha.19 → 0.1.0-alpha.21
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 +3 -3
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
> [!WARNING]
|
|
2
|
-
> **Alpha (`0.1.0-alpha.
|
|
2
|
+
> **Alpha (`0.1.0-alpha.21`) — 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
|
|
@@ -141,7 +141,7 @@ daemons pin at pairing, verified against the `sites` half of the projection.
|
|
|
141
141
|
Nothing here trusts a `siteId` in a body or a query string.
|
|
142
142
|
|
|
143
143
|
That is newer than the rest of this package. The site plane took the caller's
|
|
144
|
-
word for who it was until `0.1.0-alpha.
|
|
144
|
+
word for who it was until `0.1.0-alpha.21`, which on a relay reachable from the
|
|
145
145
|
internet is an open enqueue endpoint into consenting users' machines and an
|
|
146
146
|
open read of who is online. It was blind the whole time — nothing could open a
|
|
147
147
|
payload — and blind is not the same as safe.
|
|
@@ -149,7 +149,7 @@ payload — and blind is not the same as safe.
|
|
|
149
149
|
If you are running this: the site plane is authenticated but this is still a
|
|
150
150
|
single-tenant relay with in-memory state. One site, one replica.
|
|
151
151
|
|
|
152
|
-
## Breaking in `0.1.0-alpha.
|
|
152
|
+
## Breaking in `0.1.0-alpha.21`: `RelayState` is async
|
|
153
153
|
|
|
154
154
|
Every method on `RelayState` now returns a `Promise`, and `Relay.sweep()` and
|
|
155
155
|
`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.21",
|
|
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",
|
|
@@ -27,16 +27,16 @@
|
|
|
27
27
|
],
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"zod": "^4.1.13",
|
|
30
|
-
"@byollm/protocol": "0.1.0-alpha.
|
|
30
|
+
"@byollm/protocol": "0.1.0-alpha.21"
|
|
31
31
|
},
|
|
32
32
|
"publishConfig": {
|
|
33
33
|
"access": "public"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
36
|
"@supabase/supabase-js": "^2.112.2",
|
|
37
|
-
"
|
|
38
|
-
"byollm": "0.1.0-alpha.
|
|
39
|
-
"@byollm/
|
|
37
|
+
"byollm": "0.1.0-alpha.21",
|
|
38
|
+
"@byollm/server": "0.1.0-alpha.21",
|
|
39
|
+
"@byollm/conformance": "0.1.0-alpha.21"
|
|
40
40
|
},
|
|
41
41
|
"scripts": {
|
|
42
42
|
"build": "tsup"
|