You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,6 +21,14 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
21
21
22
22
## [Unreleased]
23
23
24
+
### Added
25
+
26
+
-**Cron exit ledger validation** ([#1203](https://github.com/markus-lassfolk/openclaw-hybrid-memory/issues/1203)): structured validation of maintenance step exit lines, `validate-cron-exit` CLI, bash harness guidance, and normalization of obsolete cron command references in managed job messages.
27
+
28
+
### Changed
29
+
30
+
-**Node.js**: Minimum version is now **22.16.0** so built-in `node:sqlite` includes **FTS5** (see [nodejs/node#57621](https://github.com/nodejs/node/pull/57621)); CI `.nvmrc` and `engines` updated accordingly.
Copy file name to clipboardExpand all lines: docs/QUICKSTART.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@ Get an agent that **remembers you** and **gets better at giving the right contex
21
21
22
22
Use `embedding.preferredProviders` for automatic failover between providers (e.g. `["ollama", "openai"]`). See [LLM-AND-PROVIDERS.md](LLM-AND-PROVIDERS.md#embedding-providers) for full details.
23
23
-**Chat/completion** (optional for basic memory): needed for distillation, reflection, auto-classify, etc. Any provider the OpenClaw gateway supports works; optional **`llm`** config sets model preference lists. See [LLM-AND-PROVIDERS.md](LLM-AND-PROVIDERS.md).
24
-
-**Node.js `>=22.12.0`** with npm (plugin `engines` field).
24
+
-**Node.js `>=22.16.0`** with npm (plugin `engines` field).
Copy file name to clipboardExpand all lines: extensions/memory-hybrid/cli/cmd-verify.ts
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -222,7 +222,7 @@ export async function runVerifyForCli(
222
222
issues.push(`SQLite: ${msg}`);
223
223
if(isBindingsError(msg)){
224
224
_sqliteBindingsFailed=true;
225
-
fixes.push("node:sqlite is not available. Upgrade Node.js to >=22.12.0 or use a compatible version.");
225
+
fixes.push("node:sqlite is not available. Upgrade Node.js to >=22.16.0 or use a compatible version.");
226
226
}else{
227
227
fixes.push(
228
228
`SQLite: Ensure path is writable and not corrupted. Path: ${resolvedSqlitePath}. If corrupted, back up and remove the file to recreate, or run from a process with write access.`,
0 commit comments