Skip to content

Commit dc0212c

Browse files
authored
chore: release v1.16.0 (#129)
## Release v1.16.0 (minor) Releases the user-visible changes already merged to `main`: **#124** (config validation relaxation) and **#127** (Atlas distiller "Premature close" runtime fix). Current `1.15.4` → `1.16.0`. #128 was a CI-only vitest scoping change and is intentionally not in the changelog (does not ship). ### CHANGELOG ## 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) ### Version bumps - `package.json` `version`: 1.15.4 → 1.16.0 - `src/cli.ts` `.version(...)`: 1.15.4 → 1.16.0 - version-sync verified in agreement. ### Publishing Merging this PR triggers `publish-release.yml` to publish `@copilotkit/pathfinder@1.16.0` to npm and create the tag/GitHub Release. Do not tag or release by hand.
2 parents 5a6e1cd + 4fdc161 commit dc0212c

3 files changed

Lines changed: 9 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @copilotkit/pathfinder
22

3+
## 1.16.0
4+
5+
### Minor Changes
6+
7+
- Config validation accepts minimal RAG configs — `indexing` and per-source `chunk` now optional with defaults (#124)
8+
- Fixed Atlas distiller LLM client "Premature close" errors, by disabling keep-alive on the test/proxy client (#127)
9+
310
## 1.15.4
411

512
### Patch Changes

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@copilotkit/pathfinder",
3-
"version": "1.15.4",
3+
"version": "1.16.0",
44
"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.",
55
"type": "module",
66
"repository": {

src/cli.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const program = new Command();
1111
program
1212
.name("pathfinder")
1313
.description("The knowledge server for AI agents")
14-
.version("1.15.4");
14+
.version("1.16.0");
1515

1616
program
1717
.command("init")

0 commit comments

Comments
 (0)