From 1960d86a3a95021da4fa1b2d90a1b5944cf944a0 Mon Sep 17 00:00:00 2001 From: Wenzheng Jiang Date: Thu, 9 Apr 2026 14:31:09 +0900 Subject: [PATCH] release: v3.2.7 (#2352) Co-authored-by: Claude Sonnet 4.6 --- RELEASES.md | 24 ++++++++++++++++++++++++ manifest.json | 2 +- package-lock.json | 4 ++-- package.json | 2 +- versions.json | 3 ++- 5 files changed, 30 insertions(+), 5 deletions(-) diff --git a/RELEASES.md b/RELEASES.md index 9a840c0f..7e904449 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -1,5 +1,29 @@ # Release Notes +# Copilot for Obsidian - Release v3.2.7 🔧 + +A focused patch release with **Miyo server compatibility fixes** and a small **debug table cleanup**! + +- 🔧 **Miyo now uses your vault name — not the full path** — Copilot sends your Obsidian vault folder name (instead of the absolute local path) when talking to Miyo, making it work correctly whether your Miyo server is local or remote. The outdated "Remote Vault Folder" setting has been removed since it's no longer needed. (@wenzhengjiang) +- 📁 **Miyo API alignment: folder names and relative paths** — Internal Miyo requests now use `folder_name` (matching the updated server API) and send vault-relative file paths for document indexing, keeping Copilot in sync with the Miyo server protocol. (@wenzhengjiang) +- 🛠️ **Cleaner search debug table** — The redundant row-index column has been removed from the search results debug log, and columns are now ordered more usefully: path, index type, modified time, score, explanation. (@logancyang) + +More details in the changelog: + +### Bug Fixes + +- #2342 Use vault name for Miyo requests @wenzhengjiang +- #2348 refactor(miyo): rename folderPath to folderName and fix parse-doc path @wenzhengjiang +- #2349 refactor(miyo): rename folder_path to folder_name @wenzhengjiang +- #2344 fix(debug): remove idx column from search results debug table @logancyang + +## Troubleshoot + +- If models are missing, navigate to Copilot settings -> Models tab and click "Refresh Built-in Models". +- Please report any issue you see in the member channel! + +--- + # Copilot for Obsidian - Release v3.2.6 🛠️ A solid patch release focused on **Miyo remote server improvements** and a handy **OpenRouter prompt caching toggle**! diff --git a/manifest.json b/manifest.json index 55c817c7..d2d546cd 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "copilot", "name": "Copilot", - "version": "3.2.6", + "version": "3.2.7", "minAppVersion": "0.15.0", "description": "Your AI Copilot: Chat with Your Second Brain, Learn Faster, Work Smarter.", "author": "Logan Yang", diff --git a/package-lock.json b/package-lock.json index 2ea5db6d..25b7b804 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "obsidian-copilot", - "version": "3.2.6", + "version": "3.2.7", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "obsidian-copilot", - "version": "3.2.6", + "version": "3.2.7", "license": "AGPL-3.0", "dependencies": { "@dnd-kit/core": "^6.3.1", diff --git a/package.json b/package.json index 63d0da26..70d0b0f5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "obsidian-copilot", - "version": "3.2.6", + "version": "3.2.7", "description": "Your AI Copilot: Chat with Your Second Brain, Learn Faster, Work Smarter.", "main": "main.js", "scripts": { diff --git a/versions.json b/versions.json index 9319e5e4..5600ff3a 100644 --- a/versions.json +++ b/versions.json @@ -106,5 +106,6 @@ "3.2.3": "0.15.0", "3.2.4": "0.15.0", "3.2.5": "0.15.0", - "3.2.6": "0.15.0" + "3.2.6": "0.15.0", + "3.2.7": "0.15.0" }