Download Latest Version LobeHub-2.1.47-arm64-mac.zip (143.6 MB)
Email in envelope

Get an email when there's a new version of LobeHub

Home / v2.1.43
Name Modified Size InfoDownloads / Week
Parent folder
latest-linux.yml 2026-03-16 4.1 kB
LobeHub-2.1.43-arm64-mac.zip 2026-03-16 138.6 MB
LobeHub-2.1.43-arm64-mac.zip.blockmap 2026-03-16 146.5 kB
LobeHub-2.1.43-mac.zip.blockmap 2026-03-16 152.4 kB
LobeHub-2.1.43-setup.exe 2026-03-16 127.8 MB
LobeHub-2.1.43-setup.exe.blockmap 2026-03-16 135.4 kB
LobeHub-2.1.43-x64.dmg.blockmap 2026-03-16 147.8 kB
LobeHub-2.1.43.AppImage 2026-03-16 171.2 MB
lobehub-desktop-2.1.43.tar.gz 2026-03-16 161.8 MB
lobehub-desktop-2.1.43.x86_64.rpm 2026-03-16 116.8 MB
lobehub-desktop_2.1.43_amd64.deb 2026-03-16 136.0 MB
lobehub-desktop_2.1.43_amd64.snap 2026-03-16 145.0 MB
lobehub-renderer.tar.gz 2026-03-16 19.6 MB
latest-mac-arm64.yml 2026-03-16 3.6 kB
latest-mac-x64.yml 2026-03-16 3.5 kB
latest-mac.yml 2026-03-16 4.3 kB
latest.yml 2026-03-16 3.1 kB
LobeHub-2.1.43-arm64.dmg 2026-03-16 132.6 MB
LobeHub-2.1.43-arm64.dmg.blockmap 2026-03-16 138.9 kB
LobeHub-2.1.43-mac.zip 2026-03-16 147.0 MB
LobeHub-2.1.43-x64.dmg 2026-03-16 139.7 MB
README.md 2026-03-16 2.7 kB
Release v2.1.43 source code.tar.gz 2026-03-16 42.6 MB
Release v2.1.43 source code.zip 2026-03-16 47.5 MB
Totals: 24 Items   1.5 GB 0

📦 Release v2.1.43

This release was automatically published from PR [#13032].

Changes

See PR description: https://github.com/lobehub/lobehub/pull/13032

Commit Message

This release includes a database schema migration adding BM25 full-text search indexes with ICU tokenizer across 14 tables.

Migration: Add BM25 Indexes with ICU Tokenizer

  • Added BM25 indexes for 14 tables: agents, topics, files, knowledge_bases, user_memories, chat_groups, user_memories_contexts, user_memories_preferences, user_memories_activities, user_memories_identities, user_memories_experiences, user_memory_persona_documents, documents, messages
  • All indexes use ICU tokenizer with English stemmer and stopwords for multilingual support
  • Each index includes user_id as a keyword field with fast flag for efficient filter pushdown
  • Enum/filter fields (type, status, memory_layer, memory_category, relationship, source_type, role) added as keyword+fast for filter pushdown into tantivy index scan
  • chat_groups.content (system prompt) and messages.summary added as searchable text fields
  • Large tables (documents, messages) are ordered last to avoid blocking smaller index builds
  • All CREATE INDEX statements are preceded by DROP INDEX IF EXISTS for idempotency

Notes for Self-hosted Users

  • The migration runs automatically on application startup
  • Requires the pg_search extension (added in migration 0090)
  • Index creation on large tables (messages, documents) may take several minutes depending on data volume
  • No manual intervention required

The migration owner: @tjx666 — responsible for this database schema change, reach out for any migration-related issues.

Summary by Sourcery

Add a database migration that creates BM25 full-text search indexes with ICU tokenization across key content and metadata tables to improve search performance and filter pushdown.

New Features:

  • Introduce BM25 full-text search indexes with ICU tokenizer on 14 user- and content-related tables for richer search capabilities.
  • Make additional text fields such as chat group content and message summaries searchable via the new indexes.

Enhancements:

  • Configure keyword+fast fields for user_id and other filterable enums to enable efficient filter pushdown during index scans.
  • Order index creation so large tables are processed last and guard all index creation with DROP INDEX IF EXISTS for idempotent migrations.

Build:

  • Add migration 0093 and its snapshot to the database migration system to apply the new BM25 indexes automatically on startup.
Source: README.md, updated 2026-03-16