@cerefox/memory 0.9.6 → 0.9.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/dist/bin/cerefox.js +1 -1
- package/dist/frontend/assets/{index-LidcEDZ3.js → index-D2tSVOss.js} +30 -30
- package/dist/frontend/assets/index-D2tSVOss.js.map +1 -0
- package/dist/frontend/index.html +1 -1
- package/dist/server-assets/db/rpcs.sql +3 -1
- package/dist/server-assets/db/schema.sql +7 -5
- package/package.json +1 -1
- package/dist/frontend/assets/index-LidcEDZ3.js.map +0 -1
package/dist/frontend/index.html
CHANGED
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
href="https://fonts.googleapis.com/css2?family=Geist:wght@300;400;500;600;700&display=swap"
|
|
16
16
|
/>
|
|
17
17
|
<title>Cerefox</title>
|
|
18
|
-
<script type="module" crossorigin src="/app/assets/index-
|
|
18
|
+
<script type="module" crossorigin src="/app/assets/index-D2tSVOss.js"></script>
|
|
19
19
|
<link rel="stylesheet" crossorigin href="/app/assets/index-CTOQrOUn.css">
|
|
20
20
|
</head>
|
|
21
21
|
<body>
|
|
@@ -1692,7 +1692,9 @@ STABLE
|
|
|
1692
1692
|
SECURITY DEFINER
|
|
1693
1693
|
SET search_path = public, pg_catalog
|
|
1694
1694
|
AS $$
|
|
1695
|
-
|
|
1695
|
+
-- Keep in lockstep with the `@version:` marker in schema.sql (cut_release.ts
|
|
1696
|
+
-- enforces it). Bump whenever schema.sql OR rpcs.sql changes.
|
|
1697
|
+
SELECT '0.4.0'::TEXT;
|
|
1696
1698
|
$$;
|
|
1697
1699
|
|
|
1698
1700
|
|
|
@@ -5,12 +5,14 @@
|
|
|
5
5
|
-- Requires extensions: vector (pgvector), uuid-ossp
|
|
6
6
|
-- These are enabled at the top of db_deploy.py before this file is applied.
|
|
7
7
|
--
|
|
8
|
-
-- @version: 0.
|
|
8
|
+
-- @version: 0.4.0
|
|
9
9
|
-- The `@version` marker above is read by the schema-version-mismatch banner
|
|
10
|
-
-- (see /api/v1/schema-version). Bump it whenever schema.sql
|
|
11
|
-
-- changes in a way that requires `
|
|
12
|
-
--
|
|
13
|
-
-- the
|
|
10
|
+
-- (see /api/v1/schema-version). Bump it whenever schema.sql OR rpcs.sql
|
|
11
|
+
-- changes in a way that requires `cerefox server deploy` to be re-run —
|
|
12
|
+
-- schema and RPCs deploy together, so this version covers both. You MUST
|
|
13
|
+
-- bump it in lockstep with the `cerefox_schema_version()` literal at the
|
|
14
|
+
-- bottom of rpcs.sql (the deployed value); `cut_release.ts` fails the cut if
|
|
15
|
+
-- `src/cerefox/db/` changed without this bump, or if the two disagree.
|
|
14
16
|
|
|
15
17
|
-- ── Projects ──────────────────────────────────────────────────────────────────
|
|
16
18
|
-- Lightweight user-defined categories. No predefined taxonomy.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cerefox/memory",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.7",
|
|
4
4
|
"description": "Cerefox — user-owned shared memory for AI agents. The local TypeScript runtime: stdio MCP server in v0.4; CLI binary added in v0.5; in-process web server in v0.6; ingestion pipeline in v0.7.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"homepage": "https://github.com/fstamatelopoulos/cerefox",
|