mirror of
https://github.com/open-webui/oikb.git
synced 2026-07-09 16:00:53 +00:00
chore: bump v0.2.1
This commit is contained in:
parent
86418bac28
commit
f588d8a63f
3 changed files with 14 additions and 2 deletions
12
CHANGELOG.md
12
CHANGELOG.md
|
|
@ -4,6 +4,18 @@ All notable changes to this project will be documented in this file.
|
|||
|
||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
|
||||
|
||||
## [0.2.1] - 2025-05-20
|
||||
|
||||
### Added
|
||||
|
||||
- API key authentication for daemon endpoints (`OIKB_API_KEY` env var, Docker secrets `_FILE` supported).
|
||||
- Configurable fields, format, and query filters for Jira and ServiceNow connectors.
|
||||
|
||||
### Changed
|
||||
|
||||
- `.oikb.yaml` top-level key renamed from `sync:` to `sources:` (backward compatible).
|
||||
- `/health` endpoints remain public; `/history` and `/sync` require auth when key is set.
|
||||
|
||||
## [0.2.0] - 2025-05-20
|
||||
|
||||
### Added
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[project]
|
||||
name = "oikb"
|
||||
version = "0.2.0"
|
||||
version = "0.2.1"
|
||||
description = "Sync anything to Open WebUI Knowledge Bases"
|
||||
readme = "README.md"
|
||||
authors = [
|
||||
|
|
|
|||
|
|
@ -38,7 +38,7 @@ async def verify_api_key(
|
|||
app = FastAPI(
|
||||
title="oikb",
|
||||
description="Sync engine for Open WebUI Knowledge Bases. Trigger syncs, check status, and query history.",
|
||||
version="0.2.0",
|
||||
version="0.2.1",
|
||||
)
|
||||
|
||||
# Runtime state populated by start_daemon().
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue