From 155465f52abaac7ae27b19db735a55a845e659df Mon Sep 17 00:00:00 2001 From: Alex Newman Date: Tue, 25 Nov 2025 16:38:59 -0500 Subject: [PATCH] docs: Update CHANGELOG.md for v6.3.2 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- CHANGELOG.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 263f1089..f5be1e68 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,22 @@ 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.0.0/). +## [6.3.2] - 2025-11-25 + +## What's Changed + +### Improvements +- Add search query support to `/api/decisions` endpoint - now supports semantic search within decisions using Chroma with `{ type: 'decision' }` metadata filter + +### Usage +```bash +# Search within decisions (new) +curl "http://localhost:37777/api/decisions?query=architecture&format=full&limit=5" + +# All decisions (existing behavior preserved) +curl "http://localhost:37777/api/decisions?format=index&limit=10" +``` + ## [6.3.1] - 2025-11-25 ## What's New