@cerefox/memory 1.15.0-beta.1 → 1.15.0-beta.2

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.
@@ -5318,7 +5318,7 @@ var init_cli_core = __esm(() => {
5318
5318
  });
5319
5319
 
5320
5320
  // src/meta.ts
5321
- var PKG_VERSION = "1.15.0-beta.1";
5321
+ var PKG_VERSION = "1.15.0-beta.2";
5322
5322
  var init_meta = () => {};
5323
5323
 
5324
5324
  // ../../_shared/config/paths.ts
@@ -23685,7 +23685,7 @@ var init_bundled_docs = __esm(() => {
23685
23685
  });
23686
23686
 
23687
23687
  // ../../_shared/ef-meta/index.ts
23688
- var EF_VERSION = "1.14.5", CEREFOX_VERSION = "1.15.0-beta.1", EF_LAST_CHANGED = "1.14.5";
23688
+ var EF_VERSION = "1.14.5", CEREFOX_VERSION = "1.15.0-beta.2", EF_LAST_CHANGED = "1.14.5";
23689
23689
  var init_ef_meta = () => {};
23690
23690
 
23691
23691
  // ../../_shared/compatibility/index.ts
@@ -73494,7 +73494,7 @@ async function action10(options) {
73494
73494
  checks.push({
73495
73495
  label: "Supabase CLI reachable (`npx supabase --version`)",
73496
73496
  ok: commandSucceeds("npx", ["--yes", "supabase", "--version"]),
73497
- remediation: "Install Node 20+ (npx ships with it) from nodejs.org, then re-run. " + "`cerefox server deploy` shells out to the Supabase CLI via npx."
73497
+ remediation: "Install Node 24+ (npx ships with it) from nodejs.org, then re-run. " + "`cerefox server deploy` shells out to the Supabase CLI via npx."
73498
73498
  });
73499
73499
  checks.push({
73500
73500
  label: "Supabase project ref resolved (from CEREFOX_SUPABASE_URL)",
@@ -77711,6 +77711,7 @@ function checkBinary() {
77711
77711
  detail: process.argv[1] ?? "(unknown)"
77712
77712
  };
77713
77713
  }
77714
+ var MIN_NODE_MAJOR = 24;
77714
77715
  function checkRuntime() {
77715
77716
  const bun = process.versions.bun;
77716
77717
  const node = process.versions.node;
@@ -77719,12 +77720,12 @@ function checkRuntime() {
77719
77720
  }
77720
77721
  if (node) {
77721
77722
  const major = Number.parseInt(node.split(".")[0], 10);
77722
- if (major < 20) {
77723
+ if (major < MIN_NODE_MAJOR) {
77723
77724
  return {
77724
77725
  name: "runtime",
77725
77726
  status: "error",
77726
- detail: `Node ${node} (< 20)`,
77727
- hint: "Cerefox requires Node 20+; upgrade or install Bun."
77727
+ detail: `Node ${node} (< ${MIN_NODE_MAJOR})`,
77728
+ hint: `Cerefox requires Node ${MIN_NODE_MAJOR}+; upgrade or install Bun.`
77728
77729
  };
77729
77730
  }
77730
77731
  return { name: "runtime", status: "ok", detail: `Node ${node}` };
@@ -36,7 +36,7 @@ export const EF_VERSION = "1.14.5";
36
36
  * is imported by the Deno Edge Functions, which cannot reach into the npm
37
37
  * package.
38
38
  */
39
- export const CEREFOX_VERSION = "1.15.0-beta.1";
39
+ export const CEREFOX_VERSION = "1.15.0-beta.2";
40
40
 
41
41
  /**
42
42
  * The most recent version whose EF-side SOURCE actually changed (#127).
@@ -85,7 +85,7 @@ in the container.
85
85
  - Some content ingested (`cerefox document ingest my-notes.md`)
86
86
 
87
87
  **For Path A-Local only:**
88
- - [Node.js ≥20](https://nodejs.org) (for `npx --package=@cerefox/memory cerefox mcp`, or a
88
+ - [Node.js ≥24](https://nodejs.org) (for `npx --package=@cerefox/memory cerefox mcp`, or a
89
89
  global `npm install -g @cerefox/memory`)
90
90
  + `.env` file in the working directory the client launches the server from (see "env block"
91
91
  in the per-client configs below if your client can't see the file)
@@ -1259,7 +1259,7 @@ When Path A is still better:
1259
1259
 
1260
1260
  Same as **Path A-Local**:
1261
1261
 
1262
- - [Node.js ≥20](https://nodejs.org) + the CLI installed: `npm install -g @cerefox/memory`
1262
+ - [Node.js ≥24](https://nodejs.org) + the CLI installed: `npm install -g @cerefox/memory`
1263
1263
  - `.env` configured (resolved from the working directory) with `CEREFOX_SUPABASE_URL`, `CEREFOX_SUPABASE_KEY` (service-role / new secret key), and your embedding API key (`OPENAI_API_KEY`)
1264
1264
 
1265
1265
  Quick sanity check before pointing an agent at it:
@@ -17,7 +17,7 @@ the Cerefox install and setup below takes ~15 minutes.
17
17
 
18
18
  ## Prerequisites
19
19
 
20
- - **Node.js 20+** (`node --version`) or **Bun 1.0+** (`bun --version`)
20
+ - **Node.js 24+** (`node --version`) or **Bun 1.0+** (`bun --version`)
21
21
  - A **Supabase account** -- [supabase.com](https://supabase.com) (free tier works). A fresh project is fine — `cerefox server deploy` (Step 2) deploys the schema for you.
22
22
  - An **OpenAI API key** -- [platform.openai.com/api-keys](https://platform.openai.com/api-keys)
23
23
 
@@ -9,7 +9,7 @@ This guide walks you from a blank Supabase project to a fully deployed Cerefox s
9
9
  ## Prerequisites
10
10
 
11
11
  - The Cerefox CLI installed (`cerefox --version`) — see [`quickstart.md`](quickstart.md#1-install). End users do **not** need a source clone or Python.
12
- - **Node.js 20+** or **Bun 1.0+** (the CLI runtime; also used for `npx supabase`).
12
+ - **Node.js 24+** or **Bun 1.0+** (the CLI runtime; also used for `npx supabase`).
13
13
  - A Supabase account (free tier is enough): [supabase.com](https://supabase.com)
14
14
 
15
15
  > Contributors with a repo clone use `bun scripts/db_deploy.ts` / `bun scripts/db_migrate.ts` for the low-level schema path. (The former `python scripts/db_*.py` equivalents were removed at v1.0.0.)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cerefox/memory",
3
- "version": "1.15.0-beta.1",
3
+ "version": "1.15.0-beta.2",
4
4
  "description": "Cerefox \u2014 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",