From 4fdc161526afe541e7a4316204299381e4528ea8 Mon Sep 17 00:00:00 2001 From: Jordan Ritter Date: Thu, 25 Jun 2026 12:13:40 -0700 Subject: [PATCH] chore: release v1.16.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Config validation accepts minimal RAG configs — `indexing` and per-source `chunk` now optional with defaults (#124) - Fixed Atlas distiller LLM client "Premature close" errors, by disabling keep-alive on the test/proxy client (#127) --- CHANGELOG.md | 7 +++++++ package.json | 2 +- src/cli.ts | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 888f1b7..280a590 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # @copilotkit/pathfinder +## 1.16.0 + +### Minor Changes + +- Config validation accepts minimal RAG configs — `indexing` and per-source `chunk` now optional with defaults (#124) +- Fixed Atlas distiller LLM client "Premature close" errors, by disabling keep-alive on the test/proxy client (#127) + ## 1.15.4 ### Patch Changes diff --git a/package.json b/package.json index 0cd76c0..5e70e4e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@copilotkit/pathfinder", - "version": "1.15.4", + "version": "1.16.0", "description": "The knowledge server for AI agents — index docs, code, Notion, Slack, and Discord into searchable, agent-accessible knowledge via MCP. Supports OpenAI, Ollama, and local transformers.js embeddings.", "type": "module", "repository": { diff --git a/src/cli.ts b/src/cli.ts index 7d0dbad..b9b374b 100644 --- a/src/cli.ts +++ b/src/cli.ts @@ -11,7 +11,7 @@ const program = new Command(); program .name("pathfinder") .description("The knowledge server for AI agents") - .version("1.15.4"); + .version("1.16.0"); program .command("init")