@cerefox/memory 0.8.2 → 0.8.3

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.
@@ -7184,7 +7184,7 @@ var exports_meta = {};
7184
7184
  __export(exports_meta, {
7185
7185
  PKG_VERSION: () => PKG_VERSION
7186
7186
  });
7187
- var PKG_VERSION = "0.8.2";
7187
+ var PKG_VERSION = "0.8.3";
7188
7188
  var init_meta = () => {};
7189
7189
 
7190
7190
  // ../../node_modules/.bun/tslib@2.8.1/node_modules/tslib/tslib.js
@@ -221,9 +221,17 @@ Deployed Functions on project <your-project-ref>: cerefox-ingest
221
221
  You can verify in the Supabase Dashboard → **Edge Functions** — all three functions should
222
222
  appear with a green "Active" status.
223
223
 
224
+ > **`WARNING: Docker is not running` is expected and harmless.** The Supabase CLI checks for
225
+ > Docker (its older local bundler ran in a container) but falls back to bundling the functions
226
+ > server-side — it uploads the source assets (you'll see `Uploading asset (…)` lines) and
227
+ > Supabase compiles them in the cloud. **Docker is not a prerequisite for deploying Cerefox's
228
+ > Edge Functions.** A deploy succeeded as long as each function ends with
229
+ > `Deployed Functions on project …`. This applies to both the manual commands here and
230
+ > `cerefox deploy-server --functions-only`.
231
+
224
232
  > **Re-deploying after updates**: run the same `npx supabase functions deploy` commands
225
- > again from the project root. `npx supabase login` and `npx supabase link` only need to be
226
- > run once per machine.
233
+ > again from the project root, or just `cerefox deploy-server --functions-only` (it deploys
234
+ > all 9 from the bundled assets). `npx supabase login` only needs to be run once per machine.
227
235
 
228
236
  ---
229
237
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cerefox/memory",
3
- "version": "0.8.2",
3
+ "version": "0.8.3",
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",