@cerefox/memory 1.1.0-beta.5 → 1.1.0-beta.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.
@@ -20,6 +20,19 @@ to re-run.
20
20
 
21
21
  ## End-user upgrade
22
22
 
23
+ > **Upgrading to v1.1.0: run `cerefox server deploy`, don't defer it.** Most
24
+ > releases let you postpone the server step. This one should not be postponed:
25
+ > schema **0.10.2** fixes a defect where a stale or blank
26
+ > `expected_content_hash` raised its conflict under a SQLSTATE that infrastructure
27
+ > treats as *retryable*. Because the conflict is permanent, retry-aware layers
28
+ > could replay the request without limit — one report reached ~47 million calls
29
+ > over about a day and exhausted the project's disk-IO budget. The fix lives in
30
+ > `rpcs.sql`, so **upgrading the client alone does not apply it**; the database
31
+ > keeps the old behaviour until the RPCs are redeployed. `cerefox doctor` will
32
+ > say so, and the web UI shows a banner.
33
+ >
34
+ > Cerefox Local users need no separate step — the schema ships inside the image.
35
+
23
36
  ```bash
24
37
  cerefox self-update # or: re-run the installer, or bun/npm update -g @cerefox/memory
25
38
  cerefox server deploy # applies pending migrations, re-applies RPCs, redeploys the 9 Edge Functions
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cerefox/memory",
3
- "version": "1.1.0-beta.5",
3
+ "version": "1.1.0-beta.7",
4
4
  "description": "Cerefox — user-owned shared memory for AI agents. CLI + stdio MCP server + web UI + ingestion for a knowledge base on your own Supabase project (or fully self-hosted with Cerefox Local).",
5
5
  "license": "Apache-2.0",
6
6
  "homepage": "https://github.com/fstamatelopoulos/cerefox",