From 3948cd6966078068e771e1b35ab0fe2a709940e7 Mon Sep 17 00:00:00 2001 From: "Peter.Morton" Date: Thu, 30 Apr 2026 19:32:52 -0500 Subject: [PATCH] chore: bump version to 1.1.9 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- CHANGELOG.md | 6 ++++++ manifest.json | 2 +- package.json | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9f7bc85..26fb816 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -73,6 +73,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Comprehensive input schema definitions - Security audit of parameter handling +## [1.1.9] - 2026-04-30 + +### Fixed +- **Images returned as MCP image content type**: Updated binary file handling so image files (PNG, JPG, JPEG, GIF, WEBP, SVG) are returned as `{ type: "image", data: "", mimeType: "..." }` per the MCP 2025-11-25 spec for image content in tool results + - Non-image binary files (PDF, ZIP, DOCX, etc.) continue to use the embedded resource format `{ type: "resource", resource: { uri, mimeType, blob } }` + ## [1.1.8] - 2026-04-30 ### Fixed diff --git a/manifest.json b/manifest.json index 303cac4..31b1698 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "manifest_version": "0.3", "name": "obsidian-mcp", - "version": "1.1.8", + "version": "1.1.9", "display_name": "Obsidian CLI Bundle", "description": "MCP Bundle for Obsidian CLI - Enable AI assistants to manage Obsidian vaults through conversational interface", "long_description": "This MCP bundle provides a comprehensive set of tools for AI assistants to interact with and manage Obsidian vaults. It includes capabilities for creating, reading, updating, and deleting notes, managing links and tags, handling tasks, and more. With this bundle, AI assistants can seamlessly integrate with Obsidian to help users organize their knowledge and workflows.", diff --git a/package.json b/package.json index 13e5d96..5af273f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "obsidian-mcp", - "version": "1.1.8", + "version": "1.1.9", "description": "MCP Bundle for Obsidian CLI - Enable AI assistants to manage Obsidian vaults through Model Context Protocol", "type": "module", "main": "dist/index.js",