@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.
- package/AGENT_GUIDE.md +1 -1
- package/AGENT_QUICK_REFERENCE.md +13 -8
- package/dist/bin/cerefox.js +66 -33
- package/dist/frontend/assets/{index-Co28kX04.js → index-DD7DDGGU.js} +28 -28
- package/dist/frontend/assets/index-DD7DDGGU.js.map +1 -0
- package/dist/frontend/index.html +1 -1
- package/dist/server-assets/_shared/ef-meta/index.ts +2 -2
- package/dist/server-assets/_shared/mcp-tools/_utils.ts +35 -38
- package/dist/server-assets/_shared/mcp-tools/get-help-content.ts +3 -3
- package/dist/server-assets/db/migrations/0015_conflict_errcode_pt409.sql +51 -0
- package/dist/server-assets/db/migrations/0016_retention_config.sql +69 -0
- package/dist/server-assets/db/rpcs.sql +98 -9
- package/dist/server-assets/db/schema.sql +1 -1
- package/docs/guides/cli.md +40 -0
- package/docs/guides/configuration.md +6 -6
- package/docs/guides/upgrading.md +13 -0
- package/package.json +1 -1
- package/dist/frontend/assets/index-Co28kX04.js.map +0 -1
package/docs/guides/upgrading.md
CHANGED
|
@@ -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.
|
|
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",
|