@byollm/server 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 CHANGED
@@ -1,5 +1,5 @@
1
1
  > [!WARNING]
2
- > **Alpha (`0.1.0-alpha.19`) — under active development. Don't use this yet.**
2
+ > **Alpha (`0.1.0-alpha.21`) — under active development. Don't use this yet.**
3
3
  >
4
4
  > Install it deliberately: `npm install @byollm/server@alpha`.
5
5
  >
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@byollm/server",
3
- "version": "0.1.0-alpha.19",
3
+ "version": "0.1.0-alpha.21",
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.19"
33
+ "@byollm/protocol": "0.1.0-alpha.21"
34
34
  },
35
35
  "peerDependencies": {
36
36
  "@supabase/supabase-js": "^2.58.0"
@@ -84,3 +84,4 @@ begin
84
84
  return v_runner;
85
85
  end;
86
86
  $$;
87
+
@@ -0,0 +1,25 @@
1
+ -- Which grant recorded a result — cloud_008 §3.6.
2
+ --
3
+ -- `complete` now checks terminal state **before** the holder, so
4
+ -- `RESULT_IDEMPOTENT` is enforced by the branch named after it rather than as
5
+ -- a side effect of the lease being nulled on success. Answering a replay
6
+ -- correctly means knowing which grant recorded the result, and `lease_id` is
7
+ -- cleared at completion by design: "who holds this" and "who finished this"
8
+ -- are different questions with different lifetimes.
9
+ --
10
+ -- ## Why this is its own file
11
+ --
12
+ -- It was first appended to `20260819000000_drop_runner_token.sql`, which had
13
+ -- already shipped in alpha.19. An applied migration is immutable — that is the
14
+ -- whole reason a migrations folder can be trusted — and the fact that this one
15
+ -- is only days old and probably applied nowhere does not make editing it a
16
+ -- different act. The rule is worth more than the tidiness.
17
+ --
18
+ -- ## Nullable, and not backfilled
19
+ --
20
+ -- Rows completed before this migration have no recorded grant, so a replay of
21
+ -- one of them is answered as a plain refusal rather than as a duplicate. That
22
+ -- is the safe direction: it withholds a reassurance rather than inventing one,
23
+ -- and the daemons that produced those rows stopped retrying long ago.
24
+ alter table byollm_jobs
25
+ add column if not exists completed_by_lease_id text;