@byollm/relay 0.1.0-alpha.71 → 0.1.0-alpha.72

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.
Files changed (2) hide show
  1. package/README.md +4 -4
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -1,5 +1,5 @@
1
1
  > [!WARNING]
2
- > **Alpha (`0.1.0-alpha.71`) — under active development. Don't use this yet.**
2
+ > **Alpha (`0.1.0-alpha.72`) — 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.71` is that release, whole.
75
+ > so `0.1.0-alpha.72` 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.71`, which on a relay reachable from the
186
+ word for who it was until `0.1.0-alpha.72`, 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.71`: `RelayState` is async
194
+ ## Breaking in `0.1.0-alpha.72`: `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.71",
3
+ "version": "0.1.0-alpha.72",
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.71"
34
+ "@byollm/protocol": "0.1.0-alpha.72"
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/control-plane": "0.1.0-alpha.71",
43
- "@byollm/server": "0.1.0-alpha.71",
44
- "@byollm/conformance": "0.1.0-alpha.71",
45
- "byollm": "0.1.0-alpha.71"
42
+ "@byollm/conformance": "0.1.0-alpha.72",
43
+ "byollm": "0.1.0-alpha.72",
44
+ "@byollm/server": "0.1.0-alpha.72",
45
+ "@byollm/control-plane": "0.1.0-alpha.72"
46
46
  },
47
47
  "peerDependencies": {
48
48
  "vitest": ">=3"