@byollm/server 0.1.0-alpha.5 → 0.1.0-alpha.7
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 +8 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
> [!WARNING]
|
|
2
|
-
> **Alpha (`0.1.0-alpha.
|
|
2
|
+
> **Alpha (`0.1.0-alpha.7`) — under active development. Don't use this yet.**
|
|
3
3
|
>
|
|
4
4
|
> Install it deliberately: `npm install @byollm/server@alpha`.
|
|
5
5
|
>
|
|
@@ -13,7 +13,13 @@
|
|
|
13
13
|
> not an npm deprecation, which would read as *abandoned* rather than *early*.
|
|
14
14
|
> Ask for `@alpha` explicitly so your lockfile records that you meant to.
|
|
15
15
|
>
|
|
16
|
-
> **`alpha.
|
|
16
|
+
> **`alpha.7` breaks nobody who is not implementing a relay.** `@byollm/relay`'s
|
|
17
|
+
> projection gains `devices` — the device keys a control plane has approved —
|
|
18
|
+
> and the relay refuses to pair a device that is not in it. `revoked` becomes
|
|
19
|
+
> `{owner, siteId}` instead of a composite string. Sites, daemons, stores and
|
|
20
|
+
> the wire format are all untouched; no runner re-pairs.
|
|
21
|
+
>
|
|
22
|
+
> **`alpha.5` broke store adapters, and nothing else.** If you implement
|
|
17
23
|
> `JobStore` yourself, two changes are required: a new `adopt(args)` method
|
|
18
24
|
> (record a lease granted by an upstream this store does not own), and
|
|
19
25
|
> `CompleteArgs.runnerId` is replaced by `holder` — a discriminated union
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@byollm/server",
|
|
3
|
-
"version": "0.1.0-alpha.
|
|
3
|
+
"version": "0.1.0-alpha.7",
|
|
4
4
|
"description": "Framework-agnostic BYOLLM protocol handlers, a reference in-memory store, a Next.js mount, and a Supabase adapter.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"node": ">=22.14"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@byollm/protocol": "0.1.0-alpha.
|
|
33
|
+
"@byollm/protocol": "0.1.0-alpha.7"
|
|
34
34
|
},
|
|
35
35
|
"peerDependencies": {
|
|
36
36
|
"@supabase/supabase-js": "^2.58.0"
|