Skip to content

Commit f588d8a

Browse files
committed
chore: bump v0.2.1
1 parent 86418ba commit f588d8a

3 files changed

Lines changed: 14 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,18 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
66

7+
## [0.2.1] - 2025-05-20
8+
9+
### Added
10+
11+
- API key authentication for daemon endpoints (`OIKB_API_KEY` env var, Docker secrets `_FILE` supported).
12+
- Configurable fields, format, and query filters for Jira and ServiceNow connectors.
13+
14+
### Changed
15+
16+
- `.oikb.yaml` top-level key renamed from `sync:` to `sources:` (backward compatible).
17+
- `/health` endpoints remain public; `/history` and `/sync` require auth when key is set.
18+
719
## [0.2.0] - 2025-05-20
820

921
### Added

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "oikb"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
description = "Sync anything to Open WebUI Knowledge Bases"
55
readme = "README.md"
66
authors = [

src/oikb/daemon.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ async def verify_api_key(
3838
app = FastAPI(
3939
title="oikb",
4040
description="Sync engine for Open WebUI Knowledge Bases. Trigger syncs, check status, and query history.",
41-
version="0.2.0",
41+
version="0.2.1",
4242
)
4343

4444
# Runtime state populated by start_daemon().

0 commit comments

Comments
 (0)