-
Notifications
You must be signed in to change notification settings - Fork 4
Releases: FFatTiger/lore
Releases · FFatTiger/lore
v1.3.7
Highlights
- Unified open-source plugin connection settings around
~/.lore/config.jsonfor base URL and API token. (96c88b6) - Promoted the tested pre-release to stable
v1.3.7. (8960339)
Fixed
- Preserved existing shared API tokens during reinstall when
--api-tokenis omitted, avoiding accidental local auth loss. (96c88b6) - Standardized Claude Code and Codex MCP auth on Bearer headers instead of env-var-only or query-token behavior. (96c88b6)
Changes
- OpenClaw, Pi, Hermes, Codex hooks, and Claude Code hooks now resolve shared config consistently. (96c88b6)
- Installer scripts and docs now describe
~/.lore/config.jsonas the shared source for plugin base URL and token. (96c88b6)
Full Changelog: v1.3.6...v1.3.7
Assets 7
v1.3.7-pre.0
v1.3.7-pre.0
Pre-release
Pre-release
Highlights
- Unified open-source plugin connection settings around
~/.lore/config.jsonfor base URL and API token. - Configured Claude Code and Codex MCP with standard Bearer headers instead of query-token fallback.
Fixed
- Preserved existing shared API tokens during reinstall when
--api-tokenis omitted. - Made Codex installer and hooks prefer the shared Lore config while retaining legacy environment fallbacks.
Changes
- Updated OpenClaw, Pi, Hermes, Codex hooks, and Claude Code hooks to resolve shared config consistently.
- Updated installer scripts, plugin docs, and manifests for
v1.3.7-pre.0.
Full Changelog: v1.3.6...v1.3.7-pre.0
Assets 7
v1.3.6
Highlights
- Restores the Aurora background as an explicit workspace preference instead of always rendering it behind the app. (3fdc5ab)
Fixed
- Fixed the AppShell background behavior after the mobile navigation cleanup: the animated Aurora backdrop now defaults off, persists only when the user enables it, and no longer costs rendering work by default. (3fdc5ab)
Changes
- Added a Waves toggle in the navigation dock, localized toggle labels, and an
AuroraBackdropUI wrapper so AppShell continues to depend on the local UI layer. (3fdc5ab) - Bumped web, MCP, plugin, extension, and lockfile versions to
1.3.6. (3fdc5ab)
Full Changelog: v1.3.5...v1.3.6
Assets 7
v1.3.5
Highlights
- Introduces the Lore bridge API and routes Claude Code, Codex, Pi, OpenClaw, and Hermes through a shared recall/startup contract instead of runtime-specific tool-call mutation. (bridge endpoints, Claude/Codex adapters, Pi/OpenClaw adapters, Hermes adapter)
- Stabilizes MCP usage after backend restarts by making the MCP endpoint stateless. (65cfb23)
Fixed
- Fixed recall tracking guidance so agents copy
session_id/query_idfrom<recall>intolore_get_node, keeping adoption accounting explicit and consistent across runtimes. (7b60260) - Fixed Lore search on runtimes without iterator-helper support by avoiding
Iterator.prototype.toArray(). (a301e0f) - Fixed Docker runtime compatibility by moving the web image to Node 24. (5492c35)
Changes
- Removed session-read state tracking from the backend/UI path; recall blocks are shown each time instead of relying on stored read state. (7934602)
- Added Lore logo branding and updated install/plugin docs for the bridge-based release. (e1952c9, 2ab845a)
- Bumped web, MCP, plugin, extension, and lockfile versions to
1.3.5. (017767a)
Full Changelog: v1.3.4...v1.3.5
Assets 7
v1.3.5-pre.2
v1.3.5-pre.2
Pre-release
Pre-release
Highlights
- Runs the production web Docker image on Node 24 (
node:24-bookworm-slim) to match the local development runtime. - Carries forward the
v1.3.5-pre.1search fix andv1.3.5-pre.0stateless MCP endpoint changes.
Changes
- Updated every stage in
web/Dockerfilefrom Node 20 to Node 24. - Moved the MCP route regression test out of
pages/apiso it is not included as a production Pages API route.
Upgrade Notes
- Prefer
v1.3.5-pre.2overpre.0/pre.1. - Docker tags will be
1.3.5-pre.2andpre-latestafter the release workflow completes.
Verification
cd web && npm test— 83 files / 1157 tests passed.docker build -t lore-node24-check ./web— production build completed onnode:24-bookworm-slim.
Assets 7
v1.3.5-pre.1
v1.3.5-pre.1
Pre-release
Pre-release
Highlights
- Fixes Lore search on the Node 20 Docker runtime.
- Keeps the stateless MCP endpoint change from
v1.3.5-pre.0.
Changes
- Replaced
Iterator.prototype.toArray()/Array.prototype.toSorted()usage in search with Node 20-compatibleArray.from(...).sort(...). - Added regression coverage that removes
Iterator.prototype.toArrayto simulate the production runtime.
Upgrade Notes
- Prefer
v1.3.5-pre.1overv1.3.5-pre.0;pre.0can faillore_searchon Node 20.
Verification
cd web && npm test— 83 files / 1157 tests passed.cd pi-extension && npm test— 3 files / 20 tests passed.cd openclaw-plugin && npm run build && npm test— 5 files / 121 tests passed.cd hermes-plugin && python3 lore_memory/test_thin_adapters.py— 14 tests passed.
Assets 7
v1.3.5-pre.0
v1.3.5-pre.0
Pre-release
Pre-release
Highlights
- Adds the Lore bridge startup/recall endpoints for shared lifecycle context across agent integrations.
- Routes Codex, Claude Code, Pi, OpenClaw, and Hermes hooks through the bridge where applicable.
- Makes the MCP endpoint stateless so stale
mcp-session-idvalues after backend restart no longer block tool calls.
Changes
- Removed SessionEnd and session read-state tracking; recall candidates are shown every time.
- Kept recall adoption tracking via
query_id/session_idusage records. - Simplified plugin tool surfaces by removing session read tracking tools and related backend routes.
- Added regression coverage for stale MCP sessions after backend restart.
Upgrade Notes
- This is a prerelease (
v1.3.5-pre.0). Use Docker tag1.3.5-pre.0orpre-latestafter the release workflow finishes. - Agent plugins should update to the matching
1.3.5-pre.0artifacts from this release.
Verification
cd web && npm test— 83 files / 1156 tests passed.cd pi-extension && npm test— 3 files / 20 tests passed.cd openclaw-plugin && npm run build && npm test— 5 files / 121 tests passed.cd hermes-plugin && python3 lore_memory/test_thin_adapters.py— 14 tests passed.
Assets 7
v1.3.4
v1.3.3
Highlights
- Improved Dream change review and mobile navigation polish for a cleaner v1.3.x stable release.
Changes
- Dream review: added per-change review status for Dream memory changes, with approve/dismiss controls and optional
dream.auto_approve_changessetting defaulting to off. - Dream UI: improved detail view handling for workflow events, memory change review actions, and rollback visibility.
- LLM reliability: added retry handling for provider calls.
- Mobile UI: moved the app dock to the bottom on mobile, kept desktop navigation at the top, removed the background toggle, and made the Aurora background always enabled.
- Operations: added
scripts/uninstall.shfor removing Lore from Claude Code, Codex, Pi, OpenClaw, and Hermes channels. - Version sync: bumped web, MCP server, plugin, extension, and lockfile versions to
1.3.3.
Upgrade Notes
- Docker users can upgrade to
fffattiger/lore:latestafter the release workflow finishes, or pinfffattiger/lore:1.3.3. dream.auto_approve_changesdefaults tofalse; Dream-generated memory changes remain pending unless explicitly approved or the setting is enabled.- No database migration or environment variable changes are required.
Verification
cd web && npm testcd web && npm run buildcd openclaw-plugin && npm run build && npm testcd pi-extension && npm test
Assets 7
v1.3.2
Highlights
- 修复 dream diary 凌晨运行时拿不到用户交互数据的问题,日记生成质量恢复正常
Changes
- dream diary 数据收集:
getDreamRecallReview新增days参数,runDream()改为查询过去 24 小时而非仅当天(凌晨 3-4 点执行时「今天」只有 3 小时数据) - recall metadata 内容截断:query content 截断从 50 字符提升至 300 字符,LLM 能理解完整用户上下文
- 工具重命名:
get_today_recall_metadata→get_recall_metadata(不再仅限单日查询) - UI 修复:限制 recall query 列宽度避免撑破布局
- chore:react-doctor 发现的问题修复
Upgrade Notes
No special upgrade steps. 标准 docker compose pull + up 即可。
Verification
npm test— 80/80 dream 测试通过npm run typecheck- 生产库 24 小时 recall queries 共 68 条,JSON 注入大小约 31KB,在可接受范围