mirror of
https://github.com/open-webui/oikb.git
synced 2026-07-10 00:14:29 +00:00
4.5 KiB
4.5 KiB
Changelog
All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog.
[0.2.2] - 2025-05-21
Added
namekey for.oikb.yamlentries — use friendly names to target syncs via CLI (--name wiki) or API (POST /sync/wiki).
Changed
- Daemon sync endpoint changed from
/sync/{source}to/sync/{identifier}— acceptsnameorkb-id(UUIDs).
[0.2.1] - 2025-05-20
Added
- API key authentication for daemon endpoints (
OIKB_API_KEYenv var, Docker secrets_FILEsupported). - Configurable fields, format, and query filters for Jira and ServiceNow connectors.
Changed
.oikb.yamltop-level key renamed fromsync:tosources:(backward compatible)./healthendpoints remain public;/historyand/syncrequire auth when key is set.
[0.2.0] - 2025-05-20
Added
oikb daemoncommand: long-lived scheduler with FastAPI server, /health and /history endpoints.oikb historycommand: view sync history from local SQLite database.- Webhook support: /webhooks/github, /webhooks/gitlab, /webhooks/slack, /webhooks/confluence for real-time sync triggers.
--jsonoutput flag forhistorycommand.- 13 new connectors: Document360, Slab, Outline, Google Sites, Egnyte, Oracle Cloud Storage, ProductBoard, XenForo, Zulip, Gong, Fireflies, DokuWiki, ServiceNow. Total: 44 connectors.
- Multi-KB routing:
routeskey in.oikb.yamlto route files by glob pattern to different KBs. - Selective sync filters:
filter.include/filter.excludeglob patterns to narrow sync scope. - Daemon doubles as an OpenAPI tool server for Open WebUI (Settings → Connections → Tool Server).
Changed
- FastAPI and uvicorn are now core dependencies.
[0.1.3] - 2025-05-20
Changed
- Renamed
.oikb.yamlconfig key fromkbtokb-idto align with the CLI flag.
[0.1.2] - 2025-05-20
Changed
- Messaging connectors (Slack, Discord, Teams) now split messages by day for truly incremental sync. Past days are immutable so their checksums never change.
[0.1.1] - 2025-05-20
Added
- 28 new connectors bringing the total to 31, covering code repos, cloud storage, wikis, ticketing, messaging, CRM, and web:
- Code Repos: GitLab (
gitlab:owner/repo), Bitbucket (bitbucket:owner/repo) - Cloud Storage: Google Cloud Storage (
gs://), Azure Blob (az://), Dropbox (dropbox:), Cloudflare R2 (r2://) - Wikis & Knowledge Bases: Confluence (
confluence:), Notion (notion:), BookStack (bookstack:), Discourse (discourse:), GitBook (gitbook:), Guru (guru:) - Ticketing & Tasks: Jira (
jira:), Linear (linear:), Zendesk (zendesk:), Freshdesk (freshdesk:), Asana (asana:), ClickUp (clickup:), Airtable (airtable:) - Messaging: Slack (
slack:), Discord (discord:), Microsoft Teams (teams:), Gmail (gmail:) - Sales & CRM: Salesforce (
salesforce:), HubSpot (hubspot:) - Other: Google Drive (
gdrive:), SharePoint (sharepoint:), Web Crawler (web:)
- Code Repos: GitLab (
- Context manager support for
OikbClient .gitignoreadded to the project
Changed
- Renamed
--kbto--kb-idacross all commands - Modernized README with 30+ connector showcase organized by category
- Added Open WebUI 0.9.6+ version requirement note
- Updated author to Tim Baek
- Moved
import jsonto top-level inclient.py - Removed unused imports from
sync.py,config.py - Fixed
Optional[str]type hints to usestr | Nonesyntax - Removed redundant
fnmatchcheck inignore.py - Empty source message now respects
--quietflag
[0.1.0] - 2025-05-20
Added
- Initial release of oikb, a CLI tool for syncing content to Open WebUI Knowledge Bases.
- Incremental sync (
oikb sync) with SHA-256 diffing. Supports local directories, GitHub repos, and S3 buckets. - Dry-run preview (
oikb diff). - Watch mode (
oikb watch) with debounced filesystem monitoring via watchdog. - List files (
oikb ls), status (oikb status), reset (oikb reset) commands. - Configuration (
oikb config) via config file, env vars, or CLI flags. - Declarative config (
.oikb.yaml) for multi-source sync. - Ignore patterns (
.oikbignore) with gitignore-style file exclusion. - GitHub connector (
github:owner/repo) via Trees API. No local clone needed. - S3 connector (
s3://bucket/prefix) via boto3 using ETags as checksums. - Docker image with multi-arch support (amd64 + arm64).
- GitHub Actions workflows for Docker builds (GHCR) and releases.